標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2016-7-11 09:38
標題:
if...else 判斷式
//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;
}
/* 多行註解
if( 肚子餓 )
{
去吃飯
}else
{
繼續打電動
}
*/
複製代碼
作者:
王宏益
時間:
2016-7-11 09:48
#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-7-11 09: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;
}
複製代碼
作者:
陳星霖
時間:
2016-7-11 10:00
#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-7-11 10:01
#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-7-11 10:03
#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-7-11 10:03
#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-7-11 10:04
#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-7-11 10: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-7-11 10:25
#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-7-11 10:36
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a<b)
{
cout<<"a大於"<<endl;
}
else
{
cout<<"a小於b<<endl;
}
else if(a<b)
{
cout<<"a等於b"<<endl;
}
system("pause")
return 0;
}
複製代碼
作者:
吳承訓
時間:
2016-7-11 10:49
#include<iostream>
#include<cstdlin>
using namespe std;
int main()
{
int score
cout<<"請輸入你的分數"<<endl;
cin>>score;
if(score>=60)
{
cout<"恭喜你!及格了!"<<endl
{else
{
cout<<"不及格!斬!"<<endl;
}
system("pause");
returno;
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2