C言語実験——三つの整数と、積と平均値

760 ワード

C言語実験——三つの整数と、積と平均値
Time Limit: 1000MS 
Memory Limit: 65536KB
Submit  Statistic
Problem Description
3つの整数を与えて、この3つの数の和、積、平均数を求めるプログラムを設計してください.
Input
入力は正の整数a,b,cが3つしかありません.
Output
3つの和、積、平均数を含む1行を出力します.データ間はスペースで区切られ、平均数は小数の後ろの2桁を保持します.
Example Input
1 2 3

Example Output
6 6 2.00
  :                 ,            /3.0
 
   
#include
int main()
{
    int a, b, c;
    int d, e;///   ,  
    double f;///     
    scanf("%d %d %d",&a, &b, &c);
    d = a + b + c;
    e = a * b * c;
    f = d/3.0;
    printf("%d %d %.2lf
",d, e, f); return 0; }