已采納回答 / DaveKinght
定義變量時,英文字母應以單詞首字母大寫或由下劃線分開。例如“學生會”(student union)應寫為"StudentUnion"或"student_union".同一個嵌套的指令應對齊,相對是一個Tab的距離(4個空格)
2021-08-04
已采納回答 / qq_慕神7252195
#include <stdio.h>int main(){? ? int age = ;? ? int high = ;? ? float weigh =;? ? printf("\n");? ? printf("年齡:%d 歲\n", age);? ? printf("身高:%d CM\n", high);? ? printf("體重:%f KG\n", weigh);? ? printf("是否屬于肥胖兒童:%s","YES");? ? return 0;}
2021-07-25