標題:
if...else 判斷式
[打印本頁]
作者:
tonyh
時間:
2016-7-13 15:52
標題:
if...else 判斷式
本帖最後由 tonyh 於 2016-7-14 14: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-7-13 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;
}
複製代碼
回復
1#
tonyh
作者:
許哲魁
時間:
2016-7-13 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-7-13 16:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"輸入你的成績:";
cin>>score;
if (score>=60)
{
cout<<"你及格了!!";
}else
{
cout<<"不及格!腰斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林書羽
時間:
2016-7-13 16:14
#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-7-13 16: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;
}
複製代碼
回復
1#
tonyh
作者:
朱聿謙
時間:
2016-7-13 16: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;
}
複製代碼
作者:
康睿群
時間:
2016-7-13 16:31
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"輸入你的成績:";
cin>>score;
if (score>=60)
{
cout<<"你及格了!!";
}else
{
cout<<"不及格!腰斬!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
曾彥翔
時間:
2016-7-13 17:25
本帖最後由 曾彥翔 於 2016-7-13 17:26 編輯
回復
1#
tonyh
#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-7-13 20:32
#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-7-13 23:10
#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-7-14 13:41
#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-7-14 13:54
#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-7-14 13:54
#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-7-14 16:38
#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-7-14 16:39
回復
1#
tonyh
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2