標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2014-8-30 11:40
標題:
if...else 判斷式
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的分數: ";
cin>>score;
if(score>=60)
cout<<"恭喜你及格了!"<<endl;
else
cout<<"不及格!請再努力!"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
梁和雋
時間:
2014-8-30 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int r;
cout<<"請輸分數: ";
cin>>r;
if(score>=60)
cout<<"及格"<<endl;
else
cout<<"不及格"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-8-30 11:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int rape;
cout<<"請輸入你的分數: ";
cin>>rape;
if(rape>=60)
cout<<"你ok!"<<endl;
else
cout<<"不及格>_<"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-8-30 11:45
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入分數:";
cin>>score;
if(score>=60)
{
cout<<"及格"<<endl;
}
else
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-8-30 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s;
cout<<"輸入分數:"<<endl;
cin>>s;
if (s>=60)
cout<<"及格"<<endl;
else
cout<<"不及格"<<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2