標題:
010_成績判斷
[打印本頁]
作者:
游東祥
時間:
2015-4-25 11:32
標題:
010_成績判斷
讓使用者輸入一個 0~100 的成績如果成績大於等於60分,則輸出"及格",否則輸出"不及格"
請輸入成績(0~100):59
不及格
請輸入任意鍵繼續...
請輸入成績(0~100):69
及格
請輸入任意鍵繼續...
複製代碼
作者:
王翔
時間:
2015-4-25 11:40
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
while(true)
{
int score;
cout<<"請輸入成績(0~100):";
cin >>score;
if (score >=60)
{
cout<<"及格"<<endl;
}
else
{
cout<<"不及格"<<endl;
}
system ("pause");
}
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-4-25 11:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
while (true)
{
int s;
cout <<"請輸入成績(0~100):";
cin >> s;
if (s >= 60 )
{
cout << "及格" << endl;
}
else
{
cout << "不及格" << endl;
}
system("pause");
}
return 0;
}
複製代碼
作者:
黃璽安
時間:
2015-4-25 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
while (true)
{
int score;
cout<<"請輸入成績(0~100):";
cin>>score;
if(score>=60)
{
cout<<"及格"<<endl;
}
else
{
cout<<"不及格"<<endl;
}
system ("pause");
}
return 0;
}
複製代碼
作者:
林廷翰
時間:
2015-4-25 11:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
while(true)
{
int s;
cout<<"請輸入成績(0~100):";
cin>>s;
if(s>=60)
{
cout<<"及格"<<endl;
}
else
{
cout<<"不及格"<<endl;
}
system("pause");
}
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2