標題:
if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2018-8-24 13:43
標題:
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;
}
複製代碼
作者:
謝昇育
時間:
2018-8-24 14:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入成績";
cin>>x;
if(x>=60)
{
cout<<"你太棒了"<<endl;
}else
{
cout<<"你太爛了"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2018-8-24 14:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績";
cin>>score;
if(score>=60)
{
cout<<"恭喜你,你及格了";
}
else
{
cout<<"你這個豬頭!!不及格";
}
system("pause");
return 0;
}
複製代碼
作者:
莊永晴
時間:
2018-8-24 14:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int grade;
cout<<"please enter your grade.";
cin>>grade;
if(grade>=75)
{
cout<<"congragulation!!You passed!";
}else
{
cout<<"sorry.Your grades are not accepted.";
}
system("pause");
return 0;
}
複製代碼
作者:
鄭承恩
時間:
2018-8-24 14:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜你及格了!";
}
else
{
cout<<"不及格";
}
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2018-8-25 13:56
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
cout<<"報上你的年齡: ";
cin>>x;
if (x>=18)
{
cout<<"您可以考取駕照" ;
}
else
{
cout<<"不能考取駕照";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2