標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2015-7-24 15:42
標題:
if...else 判斷式
本帖最後由 tonyh 於 2015-7-24 15:58 編輯
// 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;
}
複製代碼
作者:
陳長庚
時間:
2015-7-24 15:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入成績:";
cin>>score;
if (score>=90)
{
cout<<"考那麼好幹嘛?"<<endl;
} else{
cout<<"斬"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳泓宇
時間:
2015-7-24 15:55
#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;
}
複製代碼
作者:
陳泓睿
時間:
2015-7-24 15:55
#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;
}
複製代碼
作者:
劉愷恩
時間:
2015-7-24 15:55
#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;
}
複製代碼
作者:
王駿愷
時間:
2015-7-24 15:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int weigh;
cout<<"請輸入你的公斤數";
cin>>weigh;
if(weigh<=1)
{
cout<<"so" <<endl;
}else
{
cout<<"你好肉"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
劉愷威
時間:
2015-7-24 16: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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2