標題:
if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2019-3-30 10:04
標題:
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;
}
複製代碼
作者:
洪子涵
時間:
2019-3-30 10:34
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int g;
cout<<"請輸入成績=";
cin>>g;
if(g>=60) cout<<"及格"<<endl;
else cout<<"不及格 "<<endl;
system("pause");
return 0 ;
}
複製代碼
作者:
邱楷宸
時間:
2019-3-30 10:35
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int s; //變數名稱與要做的事有一定程度的相關
cout<<"請輸入你的成績: ";
cin>>s;
cout<<"分"<<endl;
if(score>=60)
{
cout<<"恭喜你及格了>_<!"<<endl;
}
else
{
cout<<"不及格x_x!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-3-30 10:35
#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;
}
複製代碼
作者:
洪藜芸
時間:
2019-3-30 10:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,;
cout<<"請告訴我你的成績>>";
cin>>x;
if(x >= 60)
{
cout<<"及格誒!!!"<<endl;
}
else
{
cout<<"竟然不及格..."<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃傳耀
時間:
2019-3-30 10: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;
}
複製代碼
作者:
謝蓮金
時間:
2019-3-30 11:05
#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;
}
複製代碼
作者:
王建葦
時間:
2019-4-3 20:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"及格"<<endl;
}
else
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2019-5-22 14:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float 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