【c++範例】成績平均計算程式

by - 晚上8:25

#include <iostream>
using namespace std;
int main()
{
    int chinese,english,math;
    float average;    //宣告average為浮點數變數
    cout<<"請輸入國文、英文、數學成績:";
    cin>>chinese>>english>>math;  //讀入各科成績
    average = (float)(chinese+english+math)/3;    //將分數加總後除以3
    cout<<"平均分數為: "<<average<<endl;
   
    return 0;
}

你可能會喜歡

0 意見