標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2016-5-20 12:04
標題:
if...else 判斷式
本帖最後由 tonyh 於 2016-5-20 12:21 編輯
#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;
}
複製代碼
作者:
邱柏揚
時間:
2016-5-20 12: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;
}
複製代碼
作者:
孫漢瑄
時間:
2016-5-20 12: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;
}
複製代碼
作者:
謝易錚
時間:
2016-5-20 12: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;
}
複製代碼
作者:
蔡孟君
時間:
2016-5-20 12:19
本帖最後由 蔡孟君 於 2016-5-20 12:30 編輯
#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;
}
複製代碼
作者:
劉瑑恩
時間:
2016-5-20 12:19
本帖最後由 劉瑑恩 於 2016-5-20 12:29 編輯
#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;
}
複製代碼
作者:
林禹彤
時間:
2016-5-20 12:20
本帖最後由 林禹彤 於 2016-5-20 12:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請問你今天考幾分啊?";
cin>>score;
if(score>=70)
cout<<"啊不就好棒棒~~"<<endl;
else
cout<<"考這樣還敢回家???"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪為濬
時間:
2016-5-20 12:20
本帖最後由 洪為濬 於 2016-5-20 12:30 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的年齡";
cin>>score;
if(score<=30)
{
cout<<"年輕人"<<endl;
}else
{
cout<<"老叩叩"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝旻錡
時間:
2016-5-20 12:20
本帖最後由 謝旻錡 於 2016-5-20 12:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入成績:";
cin>>score;
if(score>=60)
cout<<"is ok."<<endl;
else
cout<<"go die,stupid."<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得榮
時間:
2016-5-20 12:21
#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;
}
複製代碼
作者:
蔡孟庭
時間:
2016-5-20 12:21
#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;
}
複製代碼
作者:
劉純妘
時間:
2016-5-20 12:22
本帖最後由 劉純妘 於 2016-5-20 12:29 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score=100)
cout<<"太強拉你是神等級的喔"<<endl;
else
cout<<"用心點加油啦"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱士杰
時間:
2016-5-20 12:24
#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;
}
複製代碼
作者:
王淳暘
時間:
2016-5-20 12:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float x;
cout<<"請輸入你的成績:";
cin>>x;
if(x>=60)
{
cout<<"恭喜你!及格了!"<<endl;
}else
{
cout<<"不及格,斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張恩嘉
時間:
2016-5-20 12:25
#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 ;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2