標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2016-2-2 16:00
標題:
if...else 判斷式
本帖最後由 tonyh 於 2016-2-2 16:09 編輯
#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-2-2 16:14
#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-2-2 16:17
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x;
cout<<"ENTER TEST SCORE:";
cin>>x;
if(x>=85)
{
cout<<"GOOD!!!!!!!!!!"<<endl;
}
else
{
cout<<"GO FXXXXXG YOURSELF"<<endl;
} ;
system("pause");
return 0;
}
複製代碼
作者:
孫石青
時間:
2016-2-2 16:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入您的成績:";
cin>>score;
if(score>=60)
{
cout<<"及格?阿不就好棒棒!";
} else
{
cout<<"你爛爆了!給你按個遜!";
}
system("pause");
return 0;
複製代碼
作者:
林昱岑
時間:
2016-2-2 16:19
#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-2-3 13:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int x;
cout<<"ENTER TEST SCORE:";
cin>>x;
if(x>=100)
{
cout<<" YOU ARE STUPID!!!!!!!!!!"<<endl;
}
else
{
cout<<"GO FXXXXXG YOUR YOUR THE BITCH"<<endl;
} ;
system("pause");
return 0;
}
複製代碼
作者:
謝以愛
時間:
2016-2-3 14:07
#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-2-3 14:14
#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-2-3 14:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績";
cin>>score;
if(score>=60)
{
cout<<"恭喜你及格了";
}
else
{
cout<<"不及格斬";
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2