標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2020-7-17 09:20
標題:
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-7-17 09:57
#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 score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜你! 及格了!"<<endl;
}else
{
cout<<"不及格~ 斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃丞軒
時間:
2020-7-17 09:59
#
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:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int store;
cout<<"報上你的成績";
cin>>store;
if(store>=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:01
本帖最後由 張宸綝 於 2020-7-17 10: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 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:08
#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:09
#include<iostream>
#inciude<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你!及格了!"<<endl;
}else
{
cout<<"不及格~斬!"<<endl;
}
system("pause");
return0;
}
複製代碼
作者:
陳均睿
時間:
2020-7-17 10:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=80)
{ cout<<"恭喜你及格了!"<<endl;
}else
{
cout<<"不及格...斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
王翊豪
時間:
2020-7-17 10:12
#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:16
#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: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-7-17 10: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-7-17 10:18
#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:20
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入你的成績:";
cin>>a;
cout<<"你的成績是"<<a<<endl;
if(a>=60)
{
cout<<"你及格了,恭喜不用被宮刑"<<endl;
}
else if (a<60)
{
cout<<"你不及格,恭喜要被宮刑"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林煜宸
時間:
2020-7-17 10:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入你的成績";
cin>>a;
cout<<"你的成績是"<<a<<endl;
if(a>=60)
{
cout<<"你及格了"<<endl;
}
else if (a<60)
{
cout<<"你不及格,滾"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2