標題:
if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2019-1-24 09:07
標題:
if...else 判斷式
#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;
}
複製代碼
作者:
王赫廷
時間:
2019-1-24 09:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"說出你的成績: ";
cin>>x;
if(x>=60)
{
cout<<"及格!!"<<endl;
}
else
{
cout<<"不及格...當掉!!";
}
system("pause");
return 0;
}
複製代碼
作者:
林尚毅
時間:
2019-1-24 09:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入年齡:";
cin>>x;
if(x>=18)
{
cout<<"歡迎考駕照!!"<<endl;
}else
{
cout<<"你不能考駕照!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳育靚
時間:
2019-1-24 10:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout <<"報上你的成績:" ;
cin>>x;
if(x>=60)
{
cout<<"恭喜你!及格了!";
}
else
{
cout<<"不及格...";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳育葶
時間:
2019-1-24 10:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"報上你的成績: ";
cin>>x;
if(x>=60)
{
cout<<"及格了" ;
}
else
{
cout<<"不及格";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2