慕数据2695270
2016-04-16 06:39
#include <stdio.h>
int main()
{
int age = 15;
int height = 162;
double weight = 82.5;
char isfat = 'y';
printf("年龄:%d 岁\n", age);
printf("身高:%d CM\n", height);
printf("体重:%f KG\n", weight);
printf("是否属于肥胖儿童:%c\n", isfat);
/*%d,%f,%c此类符号在后面会有讲解*/
return 0;
}
double weight = 82.5;
这句应该改成单精度的
可以的,在C语言环境下可以运行正确
C语言入门
927004 学习 · 21533 问题
相似问题