標題:
006 if else 分數判斷系統
[打印本頁]
作者:
游東祥
時間:
2014-3-8 13:37
標題:
006 if else 分數判斷系統
輸入分數,然後依照輸入的分數顯示相對應結果:
100分:滿分
60~99:及格
1~60:不及格
0:零分
其他狀況:輸入錯誤
作者:
李允軒
時間:
2014-3-8 14:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cin >> x;
if (x==100)
{
cout << "滿分";
}
else if (x>=60 && x <100)
{
cout << "及格";
}
else if (x>=1 && x<60)
{
cout << "不及格";
}
else if (x==0)
{
cout << "零分";
}
else
{
cout << "輸入錯誤";
}
return 0;
}
複製代碼
作者:
林宇翔
時間:
2014-3-8 14:12
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout << "請輸入你的分數:" ;
cin >> x;
if( x == 100)
{
cout << "滿分" << endl;
}
else if( x >= 60 && x < 100)
{
cout << "及格" << endl;
}
else if( x >= 1 && x <= 60)
{
cout << "不及格" << endl;
}
else if( x == 0)
{
cout << "零分" << endl;
}
else
{
cout << "輸入錯誤" << endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2