1.若分數大於等於60,代表你通過了,否則被當了。
2.題目已提供程式碼片段,執行結果如參考畫面,程式碼有語法、邏輯或其他項目上的錯誤,請全數修正。
#include <stdio.h>
#include <stdlib.h>
int main ()
{
struct student {
char name[10];
int score;
}
struct student st1;
printf("請輸入姓名:");
scanf("%s", name);
printf("請輸入分數:");
scanf("%d", score);
printf("%s的成績是%d\n", name, score);
if (score > 60)
printf("恭喜您通過了");
else {
printf("抱歉您被當了");
}
return 0;
}
範例一 Marry 54 範例二 John 60
範例一 請輸入姓名:Marry 請輸入分數:54 Mary的成績是54 抱歉您被當了 範例二 請輸入姓名:John 請輸入分數:60 John的成績是60 恭喜您通過了
編號 | 身分 | 題目 | 主題 | 人氣 | 發表日期 |
沒有發現任何「解題報告」 |