View Code of Problem 47

#include<stdio.h>
#define N 90
int main()
{
   float a,b,c;
   scanf("%f%f%f",&a,&b,&c);
   printf("%d %d %.2f",(int)(a+b+c),(int)(a*b*c),(a+b+c)/3);
}

Double click to view unformatted code.


Back to problem 47