iT邦幫忙

0

請問我如何改變程式結構,結果才會輸出 student[i].grade 的值?

  • 分享至 

  • xImage

#include
#include<stdio.h>

struct preson
{
char name[10];
int grade;
}student[11] = { ("Mary", 13), ("John", 11), ("Ricky", 6), ("Tom", 4), ("Jane", 1), ("Keith", 5), ("Leo", 9), ("Ada", 12), ("Ann", 2), ("Pandora", 3), ("Olivia", 19) };
using namespace std;
int main()
{
char a[10];
int i;
cout << "Enter name : ";
cin >> a;

for (i = 0; i < 11; i++) {
    if (a != student[i].name) {
        continue;
    }
    cout << "The id of " << a << " is " << student[i].grade;
}

return 0;

}

要輸入在陣列student裡面有存在的名字,他才會帶出分數。
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 個回答

2
小魚
iT邦大師 1 級 ‧ 2021-04-19 07:01:47

整段包起來不要只包一段...
所以你的問題是甚麼?

如果你的問題只有這樣

請問程式我要如何改變輸出結果?

那我的回答就是

那就改變你寫的內容啊.
GHH iT邦新手 1 級 ‧ 2021-04-19 08:37:07 檢舉

精闢

我要發表回答

立即登入回答