View Code of Problem 47

#include "stdio.h"

int main()
{
	
	float a,b,c;
	scanf("%f%f%f",&a,&b,&c);
	printf("%.0f ",a+b+c);
	printf("%.0f ",a*b*c);
float s;
s=(a+b+c)/3;
printf("%.2f",s);
	return 0;
}

Double click to view unformatted code.


Back to problem 47