標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2017-2-7 11:23
標題:
if...else 判斷式
本帖最後由 tonyh 於 2017-2-7 11:49 編輯
#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-2-7 11:40
#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-2-7 11:46
#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-2-7 11:47
#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-2-7 11:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:"
intcore;
if(score>=60)
}
cout<<"及格!"<<endl;
}else
{
cout<<"不及格<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
周佳慶
時間:
2017-2-7 11:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績";
cin>>score;
if(score>60)
{
cout<<"你及格了!"<<endl;
}else
{
cout<<"不及格...去死吧!";
}
system("pause");
return 0;
}
複製代碼
作者:
李竑毅
時間:
2017-2-7 11:52
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1; i>0; i++)
{
int x=0,y=0;
cout<<"請輸入X"<<endl;
cin>>x;
cout<<"請輸入Y"<<endl;
cin>>y;
cout<<"X+Y="<<x+y<<endl;
cout<<"X-Y="<<x-y<<endl;
cout<<"X*Y="<<x*y<<endl;
cout<<"X/Y="<<x/y<<endl;
cout<<"X%Y="<<x%y<<endl<<endl;
if(x>y)
{
cout<<"X>Y"<<endl;
}
else if(x<y)
{
cout<<"X<Y"<<endl;
}
if(x=y)
{
cout<<"X=Y"<<endl;
}
system("pause");
system("cls");
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2