標題:
if...else 判斷式
[打印本頁]
作者:
王瑞喻
時間:
2021-2-2 10:25
標題:
if...else 判斷式
#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;
}
複製代碼
作者:
任璿
時間:
2021-2-2 10:37
#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;
}
作者:
李天輝
時間:
2021-2-2 10:37
#include <iostream>
#include <cstdlib>
using namespace std;
int main() {
int score;
cout<<"請輸入成績:";
cin>>score ;
if(score>=60)
{cout<<"恭喜及格"<<endl;}
else
{cout<<"不及格,請再加油";}
system("pause");
return 0;
}
複製代碼
作者:
李奕廷
時間:
2021-2-2 10:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"成績多少?";
cin>>score;
if(score>59)
{
cout<<"及格"<<endl;
}else
{
cout<<"不及格"<<endl;
}
system("pause");
return 0;
}
複製代碼
回復
1#
王瑞喻
作者:
何若晴
時間:
2021-2-2 10:57
#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;
複製代碼
作者:
蔡宜均
時間:
2021-2-2 11: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;
}
複製代碼
作者:
方黃生
時間:
2021-2-2 13:19
#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;
}
複製代碼
作者:
黃昱凱
時間:
2021-2-2 13:24
#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;
}
複製代碼
作者:
莊念篪
時間:
2021-2-2 13:24
#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;
}
作者:
王偉樺
時間:
2021-2-2 13:27
#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;
}
複製代碼
作者:
張晏滕
時間:
2021-2-2 13:31
#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;
}
複製代碼
作者:
莊鈞宸
時間:
2021-2-2 13: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;
}
複製代碼
作者:
吳亦勛
時間:
2021-2-2 13:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績: ";
cin>>score;
if(score>=60)
{
cout<<"恭喜你! 及格了!"<<endl;
}else
{
cout<<"不及格~ 斬!"w<<endl;
}
system("pause");
return0;
}
複製代碼
作者:
陳建承
時間:
2021-2-2 13:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score;
cout<<"報上你的成績:";
cin>>scor;
if(score>=60)
{
cout<<"恭喜你!!!及格了!!!"<<endl;
}else
{
cout<<"不及格!!!#@$%&*"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
鄧崴仁
時間:
2021-2-2 13:40
#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;
}
複製代碼
作者:
王廷悠
時間:
2021-2-2 13:45
#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;
作者:
張鈊喬
時間:
2021-2-2 13:45
回復
1#
王瑞喻
#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;
}
作者:
陳仕約
時間:
2021-2-2 13:46
#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;
}
複製代碼
作者:
方凱聲
時間:
2021-2-2 13:47
#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;
}
複製代碼
作者:
洪曼崴
時間:
2021-2-2 13:48
#include<iostream> //引入 <基本輸入輸出> 標頭檔 in & out stream
#include<cstdlib> //引入 <標準函式庫> 標頭檔 c standard library
using namespace std; //指定命名空間為 std
int main() //主函式
{
int score;
cout<<"報上你的成績:";
cin>>score;
if(score>=60)
{
cout<<"恭喜你!及格了!"<<endl;
}else
{
cout<<"不及格~斬!"<<endl;
}
system("pause"); //讓畫面暫停
return 0; //回傳0到主控台,告知該程式已成功執行
}
複製代碼
作者:
怡璇
時間:
2021-2-2 13:48
#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;
}
複製代碼
作者:
怡璇
時間:
2021-2-2 13:49
#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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2