標題:
if...else 判斷式
[打印本頁]
作者:
周政輝
時間:
2017-8-2 10:37
標題:
if...else 判斷式
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int score = 59;
if(score >=60) //if 判斷式
{
cout << "及格了" << endl;
}
else
{
cout << "不及格! 下次再努力!" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
石庭禎
時間:
2017-8-2 10:43
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int score = 100;
if(score >=60)
{
cout << "及格了" << endl;
}
else
{
cout << "不及格! 下次再努力!" << endl;
}
system("pause");
return 0;
}
作者:
楊詠翔
時間:
2017-8-2 10:47
回復
1#
周政輝
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入成績"<<endl;
int x=0;
cin>>x;
if (x>=60)
{cout<<"你是學霸"<<endl;
}
else if(x<60)
{cout<<"你是學渣" <<endl;
}
system ("pause");
return 0;
}
作者:
陳智鈞
時間:
2017-8-2 10:48
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int score=59;
if (score>=60)
{
cout<<"恭喜及格了"<<endl;
}
else
{
cout<<"不及格!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭宗翰
時間:
2017-8-2 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score = 59;
if(score >=60)
{
cout << "及格了" << endl;
}
else
{
cout << "不及格! 下次再努力!" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蘇昱全
時間:
2017-8-2 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score=61;
if (score>=60)
{
cout<<"及格了"<<endl;
}
else
{
cout<<"沒有及格!再繼續努力!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
胡綵玲
時間:
2017-8-2 10:50
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score=60;
if( score>=60)
{
cout<<"及格了"<<endl;
}
else
{ cout<<"不及格"<<endl;
}
system("pause");
return 0;
cout<<"hello"<<endl;
}
作者:
鄭稟燁
時間:
2017-8-2 10:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score=59
if (score >=60)
{
cout<<"及格了"<<endl;
}
else
{
cout<<"不及格! 下次再努力!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃宇綸
時間:
2017-8-2 10:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score=50;
if (score<40)
{
cout<<"yes"<<endl;
}
else
{
cout<<"no"<<endl;
}
cout<<""<<endl;
system("pause");
return 0;
}
作者:
邱路加
時間:
2017-8-2 10:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score = 59;
if(score >=60)
{
cout << "及格了" << endl;
}
else
{
cout << "不及格! 下次再努力!" << endl;
}
system("pause");
}
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score = 59;
if(score >=60)
{
cout << "及格了" << endl;
}
else
{
cout << "不及格! 下次再努力!" << endl;
}
system("pause");
}
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score = 59;
if(score >=60)
{
cout << "及格了" << endl;
}
else
{
cout << "不及格! 下次再努力!" << endl;
}
system("pause");
}
複製代碼
作者:
蔣皓宸
時間:
2017-8-2 10:51
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score =0;
cin >> score;
if(score>=60)
{
cout<<"啊不就好棒棒"<<endl;
}
else
{
cout<<"就說你不行,你都不聽"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
楊詠竣
時間:
2017-8-2 10:53
#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;
}
作者:
尤靖評
時間:
2017-8-2 10:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score=59;
if (score>=60)
{
cout<<"及格了!好棒棒"<<endl;
}
else
{
cout<<"不及格!遜斃了"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡佾辰
時間:
2017-8-2 10:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score=99;
if(score>=70)
{
cout<<"OK"<<endl;
}
else
{
cout<<"不OK加油"<<endl ;
}
system("pause");
return 0;
}
複製代碼
作者:
郭采納
時間:
2017-8-2 10:56
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=0;
cout<<"請輸入分數";
cin>>x;
if(x>=60)
{
cout<<"恭喜你,及格了"<<"\r\n";
}
else
{
cout<<"不及格,下次再加油"<<"\r\n";
}
system("pause");
return 0;
};
複製代碼
作者:
尤靖瑗
時間:
2017-8-2 10:56
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int score=59;
if(score>=60)
{
cout<<"及格了!好棒棒!"<<endl;
}
else
{
cout<<"不及格!繼續加油!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林孟霆
時間:
2017-8-2 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score=60;
if(score >=70)
{
cout << "及格" << endl;
}
else
{
cout << "不及格" <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2017-8-2 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
cout<<"請輸入成績"<<endl;
int score=0;
cin>>score;
if(score>=60)
{
cout<<"你很棒"<<endl;
}
else if(score<60)
{
cout<<"再加油"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林廷融
時間:
2017-8-2 11:00
#include<cstdlib>
#include<iostream>
using namespace std;
int main()
{
int score = 59;
if(score >=60) //if 判斷式
{
cout << "及格了" << endl;
}
else
{
cout << "不及格! 下次再努力!" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
湯東緯
時間:
2017-8-2 11:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x=23,y=7;
cout<<"請輸入x的值";
cout<<"請輸入y的值";
cin>>y;
cin>>x;
//int x;
//int Y;
cout<<x+y<<"\r\n";
cout<<x-y<<"\r\n";
cout<<x*y<<"\r\n";
cout<<x/y<<"\r\n";
cout<<x%y<<"\r\n";
system("pause");
return 0;
}
複製代碼
作者:
林子勛
時間:
2017-8-2 11:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int score=60;
if(score >=60)
{
cout<<"及格了"<<endl;
}
else
{
cout<<"不及格,再努力喔!"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林翊卉
時間:
2017-8-2 11:17
sing namespace std;
int main()
{
int score=60;
if(score>=60)
{cout<<"及格了"<< e
}
else
{
eout<<"不及格"<<
}
system("pause");
return 0;
}
作者:
蔣皓宸
時間:
2017-8-2 11:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a =0;
int b =0;
cout <<"請輸入a"<<endl;
cin >> a;
cout <<"請輸入b"<<endl;
cin >> b;
if(a>b)
{
cout<<"a>b"<<endl;
}
else if(a<b)
{
cout<<"a<b"<<endl;
}
else if(a=b)
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林孟霆
時間:
2017-8-2 11:23
{
int h;
int y;
cout<<"請輸入h";
cin>>h;
cout<<"請輸入y";
cin>>y;
cout<<"h="<<h<<endl;
cout<<"y="<<y<<endl;
if(h>y)
{
cout<<"h大於y"<<endl;
}
else if(h<y)
{
cout<<"h小於y"<<endl;
}
else
{
cout<<"h等於y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
尤靖評
時間:
2017-8-2 11:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0;
int b=0;
cout<<"請輸入a"<<endl;
cin>>a;
cout<<"請輸入b"<<endl;
cin>>b;
if(a>b)
{
cout<<"a>b"<<endl;
}
else if(a<b)
{
cout<<"a<b"<<endl;
}
else
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2