標題:
if...else 敘述
[打印本頁]
作者:
tonyh
時間:
2012-3-28 13:17
標題:
if...else 敘述
本帖最後由 tonyh 於 2012-3-28 14:05 編輯
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
cout<<"你的成績是"<<score<<"分"<<endl;
if(score>=60)
{
cout<<"恭喜你及格了!"<<endl;
}else
{
cout<<"不及格!請再加油!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃睿帆
時間:
2012-3-28 13:47
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
cout<<"你的成績是"<<score<<"分"<<endl;
if(score>=60)
{
cout<<"恭喜你及格了"<<endl;
}else
{
cout<<"不及格,請再加油"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡岳凌
時間:
2012-3-28 13:52
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
cout<<"你的成績是"<<score<<"分"<<endl;
if(score>=60)
{
cout<<"恭喜你!贏了。"<<endl;
}else
cout<<"恭喜你!輸了。"<<endl;
{
}
system("pause");
return 0;
}
複製代碼
作者:
鄭睿恒
時間:
2012-3-28 13:55
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
cout<<"你的成績是"<<score<<"分"<<endl;
if(score>=60)
{
cout<<""<<endl;
}else
{
cout<<""<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇冠鈞
時間:
2012-3-28 14:07
#include<iostream>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
cout<<"你的成績是"<<score<<"分"<<endl;
if(score>=60)
{
cout<<"恭喜你及格了!"<<endl;
}else
{
cout<<"不及格!請再加油!"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2