標題:
if...else 判斷式
[打印本頁]
作者:
蔡昀儒
時間:
2019-7-30 09:07
標題:
if...else 判斷式
[attach]6899[/attach]
#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;
}
複製代碼
作者:
薛博仁
時間:
2019-7-30 09:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入你的成績"<<endl;
cin>>x;
if(x>=60)
{
cout<<"及格!蒸蚌!" <<endl;
}
else
{
cout<<"不及格!再加油!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
龔品誠
時間:
2019-7-30 09:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入你的成績:";
cin>>x;
if(x>=60)
{
cout<<"恭喜你及格了"<<endl;
}
else
{
cout<<"你不及格!!!!!!!!!!";
}
system("pause");
return 0;
}
複製代碼
作者:
黃鋐粟
時間:
2019-7-30 09:33
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int m;
cout<<"你的分數:";
cin>>m;
if(m>=60)
{
cout<<"恭喜及格了"<<endl;
}
else
{
cout<<"不及格!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
立晟
時間:
2019-7-30 09:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入成績:"<<endl;
cin>>x;
if (x>=60)
{
cout<<"恭喜你及格了"<<endl;
}
else
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳柏臻
時間:
2019-7-30 09:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入一個分數"<<endl;
int x;
cin>>x;
if(x>=60)
{cout<<"恭喜你及格了";}
else
{cout<<"不及格!";}
system("pause");
return 0;
}
複製代碼
作者:
張博評
時間:
2019-7-30 09:48
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
cout<<"請輸入你的成績:"<<endl;
cin>>x;
if (x>=60)
cout<<"恭喜你及格了!"<<endl;
else
cout<<"不及格!"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2