標題:
if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2018-8-2 00:22
標題:
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-2 09:54
#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-2 09:54
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"輸入你的成績:"<<endl;
cin>>score;
if (score>=60)
{
cout<<"及格~~~~~"<<endl;
}
else
{
cout<<"不及格!!!!!XD~~"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2018-8-2 09:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入一個成績"<<endl;
cin>>score;
if (score>=60)
{
cout<<"恭喜!你及格啦~~";
}
else
{
cout<<"成績不及格!再接再厲";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃資尹
時間:
2018-8-2 09:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"給我成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜及格!!!";
}
else
{
cout<<"不及格去補考XDDD";
}
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
傅臣嘉
時間:
2018-8-2 09:59
#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-2 09:59
#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-2 10:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int ss;
cout<<"你的成績?"<<"A:";
cin>>ss;
cout<<ss;
if(ss>=60)
{
cout<<"及格 ";
}else
{
cout<< "不及格 " ;
}
system("pause");
return 0;
}
複製代碼
作者:
曾彥鈞
時間:
2018-8-2 10:06
#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-2 10:11
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2