那里错了,,,
#include <stdio.h>
int main()
{ int age;
int height;
float weight;
char isfat;
age=15;
height=162;
weight=82.5;
isfat= 'y';
printf("年龄:%d 岁\n",age);
printf("身高:%dCM\n",height);
printf("体重:%f\n",weight);
printf("是否属于肥胖儿童:%c",isfat);
/*%d,%f,%c此类符号在后面会有讲解*/
return 0;
}