標題:
if...else 判斷式
[打印本頁]
作者:
王瑞喻
時間:
2020-7-16 16:20
標題:
if...else 判斷式
[attach]8969[/attach]
#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-7-16 19:22
#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-7-17 09:48
#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-7-17 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;
}
複製代碼
作者:
林威彤2
時間:
2020-7-17 09:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上成績:";
cin>>score;
if(score>=60)
{
cout<<"及格了"<<endl;
}
if(score<60)
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳昱宏
時間:
2020-7-17 09:54
#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-7-17 09:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入你的分數";
cin>>a;
if(a>=60)
{
cout<<"及格了,吃奧力給"<<endl;
}else
{
cout<<"不及格,吃奧力給"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭鈞澤
時間:
2020-7-17 10:00
#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-7-17 10:01
#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-7-17 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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2