小平幫老師處理期末成績時遇到了問題。他須要計算每一個同窗的平均成績,並判斷他們是否經過了期末考試不及格成績(小於60)若都經過才能pass,若沒經過要說明是哪幾科未經過。所以他須要兩個函數,一個求平均成

#include <iostream> #include <string> using namespace std; struct Student { string number; int Chinese,Math,English; }; int avery(Student& s) { return(s.Chinese+s.English+s.Math)/3; } bool
相關文章
相關標籤/搜索