LIUyuting_3066
2015-02-15 15:06
#include <stdio.h>
int main()
{
int age = 15;
int height = 162;
int weight = 82.5;
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;
}
你的isfat没有声明是什么类型的变量。应该是char
C语言入门
926212 学习 · 20797 问题
相似问题