为什么我这个老通不过呀 请问一个( 已发现错误,搞定了)
#include <stdio.h>
int main()
{
int age =95;
float weight =60.5;
char isfat = ‘n’;
float heigh = 1.65;
char unit = 'm';
printf("年龄:%d岁\n", age);
printf("体重:%fKG\n", weight);
printf("是否属肥胖儿童: %c\n", isfat);
printf("易大见身高:%f%c\n", heigh, unit);
printf("%s","易大见现在在小慕幕网上学习C语言啦");
return 0;
}