標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2017-1-24 11:03
標題:
if...else 判斷式
本帖最後由 tonyh 於 2017-1-24 11:35 編輯
#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;
}
複製代碼
作者:
莊旻叡
時間:
2017-1-24 11:28
#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;
}
複製代碼
作者:
吳翊愷
時間:
2017-1-24 11:30
#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;
}
複製代碼
作者:
宋禹禛
時間:
2017-1-24 11:30
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"輸入你的成績";
cin>>score;
if(score>=60)
{
cout<<"及格囉!不錯喔!" ;
cout<<endl;
}
else
{
cout<<"不及格啊!!要加油!" ;
cout<<endl;
}
system("pause");
return 0;
複製代碼
作者:
黃珖瑋
時間:
2017-1-24 11:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的戶額:";
cin>>score;
if(score>=5487)
{
cout<<"阿不就好棒棒!"<<endl;
}else
{
cout<<"哈!笑你!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
楊修禹
時間:
2017-1-24 11:36
#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;
}
複製代碼
作者:
沈竑希
時間:
2017-1-24 11:36
#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;
}
複製代碼
作者:
黃子晏
時間:
2017-1-24 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=90)
{
cout<<"恭喜你!達成目標啦!";
}else
{
cout<<"低於目標你死定了!";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王子丹
時間:
2017-1-24 11:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的智商:";
cin>>score;
if(score>=180)
{
cout<<"你愛因斯坦喔!那麼聰明幹嘛!";
}else
{
cout<<"哈哈笑你...低智商生物";
}
system("pause");
return 0;
}
複製代碼
作者:
黃楷哲
時間:
2017-1-24 11:40
#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;
複製代碼
作者:
黃鼎家
時間:
2017-1-24 11:43
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你.0487?";
} else
{
cout<<"不及格 拖出去吃屎";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
呂承霖
時間:
2017-1-24 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你!及格了!";
}else
{
cout<<"不及格...斬!";
cout<<endl;
}
}
複製代碼
作者:
余孟儒
時間:
2017-1-24 12:06
#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;
}
複製代碼
作者:
文柏涵
時間:
2017-1-25 10:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=9999)
{
cout<<"恭喜你!達成目標啦!";
}else
{
cout<<"不及格 拖出去吃屎!0487878787878787";
}
cout<<endl;
system("pause");
return 0
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2