標題:
if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2018-2-6 09:56
標題:
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;
}
複製代碼
作者:
許哲睿
時間:
2018-2-6 10:00
#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-2-6 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;
}
複製代碼
作者:
任書嫻
時間:
2018-2-6 10:07
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
cout<<"請輸入成績:";
cin>>a;
if(a>59)
{
cout<<"及格了好棒棒"<<endl;
}
else
{
cout<<"傻子比我差笑你";
}
system("pause");
return 0;
}
複製代碼
作者:
董帝辰
時間:
2018-2-6 10:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int b;
cout<<"輸入數字:" ;
cin>> b;
if(b>=60)
{
cout<< "讚 "<<endl;
}else
{
cout<<"爛"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許芊寧
時間:
2018-2-6 10:16
#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;
}
複製代碼
作者:
劉翃志
時間:
2018-2-6 10:17
#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;
}
複製代碼
作者:
連昱維
時間:
2018-2-6 10:20
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2