1. 程式人生 > >C語言實驗——三個整數和、積與平均值

C語言實驗——三個整數和、積與平均值

Problem Description

給出三個整數,請你設計一個程式,求出這三個數的和、乘積和平均數。

Input

輸入只有三個正整數a、b、c。

Output

輸出一行,包括三個的和、乘積、平均數。 資料之間用一個空格隔開,其中平均數保留小數後面兩位。

Sample Input

2 3 3

Sample Output

8 18 2.67
#include<stdio.h>
#include<stdlib.h>
int main()
{
    int a,b,c;
    scanf("%d %d %d",&a,&b,&c);
    printf("%d %d %.2lf\n",a+b+c,a*b*c,(a+b+c)/3.0);
    return 0;
}