標題:
if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2019-1-29 09:14
標題:
if...else 判斷式
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜你! 及格了!";
}
else
{
cout<<"不及格... 斬!";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
龔家誼
時間:
2019-1-29 09:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜你! 及格了!";
}
else
{
cout<<"不及格... 斬!";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
廖御晴
時間:
2019-1-29 09:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜你! 及格了!";
}
else
{
cout<<"不及格... 斬!";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
孔令安
時間:
2019-1-29 09:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"your exam";
cin>>score;
if(score>=60)
{
cout<<"鳩炰斕! 摯跡賸!";
}
else
{
cout<<"祥摯跡... !";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝蓮金
時間:
2019-1-29 09:49
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請報上你的成績:";
cin>>score;
if(score>=60)
{
cout<<"及格";
}
else
{
cout<<"不及格";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝仲恩
時間:
2019-1-29 09:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"報上你的成績:";
cin>>a;
if(a>=60)
{ cout<<"恭喜及格了:";
}
else
{cout<<"不及格.....斬:";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-1-29 09:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入您的成績,沒及格就死定了:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你,及格囉";
}
else
{
cout<<"不及格ㄟ...去吃屎吧~~";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
廖思傑
時間:
2019-1-29 09:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜你! 及格了!";
}
else
{
cout<<"不及格... 斬!";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪藝瑄
時間:
2019-1-29 09:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入一個成績:";
cin>>score;
if(score>=60)
{
cout<<"及格";
}else
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
傅永賢
時間:
2019-1-29 09:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a的值";
cin>>a;
cout<<"請輸入b的值";
cin>>b;
if(a>b)
{
cout<<"a>b"<<endl;
}
else if(a<b)
{
cout<<"a<b"<<endl;
}
else
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張正宜
時間:
2019-1-29 09:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int zoo;
cout<<"請輸入成績"<<endl;
cin>>zoo;
if(zoo>=60)
{cout<<"恭喜!及格了!";}
else
{cout<<"顆顆,再加油~";}
system("pause");
return 0;
}
複製代碼
作者:
龔家誼
時間:
2019-1-29 13:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入您的年齡";
cin>>score;
if(score>=18)
{
cout<<"您可以考取駕照";
}else
{
cout<<"未滿18歲不能考取駕照";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2