標題:
【3-1】if...else 判斷式
[打印本頁]
作者:
王瑞喻
時間:
2020-2-6 16:29
標題:
【3-1】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;
}
複製代碼
作者:
林子宸
時間:
2020-2-7 09:34
#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-2-7 09:34
#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-2-7 09:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int grade;
cout<<"報上你的成績:";
cin>>grade;
if(grade>=60)
{
cout<<"及格了,666"<<endl;
}else
{
cout<<"不及格,下去"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許洺淪
時間:
2020-2-7 09:35
#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-2-7 09:35
#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-2-7 09:37
#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-2-7 09:37
#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-2-7 09:40
#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-2-7 09:42
#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-2-7 09:46
#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;
}
複製代碼
作者:
1090121_1
時間:
2020-2-7 09:48
本帖最後由 1090121_1 於 2020-2-7 09:49 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int score;
cout << "請輸入你的成績:"<<endl;
cin >> score;
if(score>100)
{
cout << "你作弊!"<<endl;
}
if(score==100)
{
cout << "好厲害! 能考100分!"<<endl;
}
else if(score>90)
{
cout << "恭喜!考"<<score<<"分!"<<endl;
}
else if(score>80)
{
cout << "不錯!有80分以上"<<endl;
}
else if(score>70)
{
cout << "加油!只有七十幾分!"<<endl;
}
else
{
cout << "好吧...不到70,請再加油!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳暐勛
時間:
2020-2-7 09:50
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2