標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2016-8-3 15:41
標題:
if...else 判斷式
本帖最後由 tonyh 於 2016-8-3 16:12 編輯
#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;
}
複製代碼
作者:
林政昕
時間:
2016-8-3 16:00
{
int score;
cout<<"請輸入你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"Ya!!you are save"<<endl;
}else
{
cout<<"you will die"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝東宏
時間:
2016-8-3 16: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;
}
複製代碼
作者:
翁梓庭
時間:
2016-8-3 16:01
#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;
}
複製代碼
作者:
洪巧芸
時間:
2016-8-3 16:02
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入你的成績:";
cin>>a;
if(a>=60)
{
cout<<"你及格了!厲害!"<<endl;
}else
{
cout<<"混!連60分也達不到!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
羅巧雯
時間:
2016-8-3 16:02
#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;
}
複製代碼
作者:
許紘誌
時間:
2016-8-3 16:02
#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;
}
複製代碼
作者:
黃謙儒
時間:
2016-8-3 16:03
本帖最後由 黃謙儒 於 2016-8-3 16:06 編輯
#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;
}
複製代碼
作者:
翁苡熏
時間:
2016-8-3 16:03
#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;
複製代碼
作者:
吳晉榕
時間:
2016-8-3 16:06
#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;
}
複製代碼
作者:
楊采真
時間:
2016-8-3 16:07
#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;
}
複製代碼
作者:
許娟慈
時間:
2016-8-3 16:13
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入成績:";
cin>>score;
if(score>=60)
{
cout<<"YA~及格了"<<endl;
}else
{cout<<"唉~不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
回復
1#
tonyh
作者:
曾堂桂
時間:
2016-8-3 16:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:"endl;
cin>>score;
if(score>=60);
{
cout<<"及格了唉!!"<<endl;
}else
{
cout<<"不及格!!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
許博堯
時間:
2016-8-3 16:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y;
cout<<"請輸入X的值:";
cin>>x;
cout<<"請輸入y的值:";
cin>>y;
cout<<"x+y="<<x+y<<endl;
cout<<"x-y="<<x-y<<endl;
cout<<"x*y="<<x*y<<endl;
cout<<"x/y="<<x/y<<endl;
cout<<"x%y="<<x%y<<endl;
system("pause");
return 0;
}
複製代碼
作者:
宋秉軒
時間:
2016-8-3 16: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;
}
複製代碼
作者:
鍾瀚磊
時間:
2016-8-3 16:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"請輸入你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你!及格了!"<<endl;
}else
{
cout<<"不及格!請繼續努力!>O<"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2