標題:
if...else 判斷式
[打印本頁]
作者:
王瑞喻
時間:
2020-8-17 16:13
標題:
if...else 判斷式
本帖最後由 王瑞喻 於 2020-8-18 09:17 編輯
#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;
}
複製代碼
作者:
蔡惟丞
時間:
2020-8-18 09:53
#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;
}
複製代碼
作者:
林妤凡
時間:
2020-8-18 10:02
#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;
}
複製代碼
作者:
鄞美旭
時間:
2020-8-18 10:02
#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;
}
複製代碼
作者:
吳英睿
時間:
2020-8-18 10:04
#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;
}
複製代碼
作者:
孫子傑
時間:
2020-8-18 10:04
#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;
}
複製代碼
作者:
梁仲維
時間:
2020-8-18 10:06
#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;
}
複製代碼
作者:
陳柏安
時間:
2020-8-18 10:07
#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;
}
複製代碼
作者:
于舜合
時間:
2020-8-18 10:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=999999)
{
cout<<"恭喜你! 及格了!"<<endl;
}else
{
cout<<"不及格斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2