You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
261 B

3 years ago
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a,b,c,d;
  5. float sum=0,ave;
  6. printf("input 4 int data:\n");
  7. scanf("%d %d %d %d", &a, &b, &c, &d);
  8. sum=a+b+c+d;
  9. ave=((int)(sum / 4.0*10))/10.0;
  10. printf("sum=%d mean=%.1f\n",sum,ave);
  11. return 0;
  12. }