標題:
if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2018-9-7 16:16
標題:
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-9-8 11:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"½Ð¿é¤J§Aªº¦¨ÁZ: ";
cin>>score;
if(score>=60)
{
cout<<"®¥³ß§A¤Î®æ¤F,µ¹§A¿}¦Y"<<endl;
}else
{
cout<<"¤£¤Î®æ!¥´§¾§¾"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄭元富
時間:
2018-9-8 11:15
#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-9-8 11:15
#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-9-8 11:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score602;
cout<<"請輸入一個整數"<<endl;
cin>>score602;
if(score602>=60)
{
cout<<"恭喜及格!!"<<endl;
}
else
{
cout<<"分數不及格!!下次加油"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇昱全
時間:
2018-9-8 11:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main ()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"你的成績及格了!!hen棒"<<endl;
}
else
{
cout<<"你的成績不及格!!笨蛋"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2018-9-8 11: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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2