拿錯(cuò)了?//???
#include <stdio.h>
int mian()
{
? ? int age=15;
? ? int height=162;
? ? float tizhong=82.5;
? ? char fat='y';
? ??
? ? printf("年齡:%d 歲\n",age);
? ? printf("身高:%d CM\n",height);
? ? printf("體重:%f KG\n",tizhong);
? ? printf("是否屬于肥胖兒童:%c\n",fat);
? ??
? ? return 0;
? ??
}
2020-11-10
int main()?