求助怎么改
{ ? ? ? ?age = 15; ? ? ? ?height = 162; ? ? ? ?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; ? ? }咋改啊?求助大神
2016-06-17
你沒有定義 int age 定義age..? age=15?
2016-06-16
int age = 15;
int height =162;
float weight = 82.5;
試一下行不行。我也是新手?。?!