標題:
if...else if...else 判斷式
[打印本頁]
作者:
周政輝
時間:
2017-8-2 11:03
標題:
if...else if...else 判斷式
本帖最後由 周政輝 於 2017-8-2 11:22 編輯
[attach]2479[/attach]
本帖隱藏的內容需要回復才可以瀏覽
作者:
陳智鈞
時間:
2017-8-2 11:15
#include <cstdlib>
#include <iostream>
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;
}
複製代碼
作者:
石庭禎
時間:
2017-8-2 11:17
#include <cstdlib>
#include <iostream>
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;
}
作者:
蘇昱全
時間:
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
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
郭采納
時間:
2017-8-2 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a=0,b=0;
cout<<"請輸入a的值:";
cin>>a;
cout<<"請輸入b的值:";
cin>>b;
if(a>b)
{
cout<<"a>b"<<"\r\n";
}
else if(a<b)
{
cout<<"a<b"<<"\r\n";
}
else
{
cout<<"a=b"<<"\r\n";
}
system("pause");
return 0;
}
複製代碼
作者:
楊詠竣
時間:
2017-8-2 11:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
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;
}
作者:
楊詠翔
時間:
2017-8-2 11:21
回復
1#
周政輝
#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;
}
複製代碼
作者:
郭宗翰
時間:
2017-8-2 11:22
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;
}
複製代碼
作者:
鄭稟燁
時間:
2017-8-2 11:22
#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;
}
複製代碼
作者:
邱路加
時間:
2017-8-2 11:23
#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
複製代碼
作者:
林廷融
時間:
2017-8-2 11:23
#include <cstdlib>
#include <iostream>
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;
}
複製代碼
作者:
蔣皓宸
時間:
2017-8-2 11:23
#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;
}
複製代碼
回復
1#
周政輝
作者:
尤靖瑗
時間:
2017-8-2 11:24
#include <cstdlib>
#include <iostream>
using namespace std;
int main()
{
int a=0;
int b=0;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
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;
}
複製代碼
作者:
林孟霆
時間:
2017-8-2 11:24
{
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:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b;
cout<<"請輸入a:";
cin>>b;
cout<<"請輸入b:";
cin>>b;
cout<<"a=a"<<a<<endl;
if(a>b)
{
cout<<"a大於b"<<endl;
}
else if(a<b)
{
cout<<"a小於b"<<endl;
}
else
{
cout<<"a等於b"<<endl;
}
system("pause");
return 0;
cout<<"hello"<<endl;
}
作者:
林子勛
時間:
2017-8-2 11:28
#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(b>a)
{
cout<<"a<b"<<endl;
}
if(a=b)
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林翊卉
時間:
2017-8-2 11:29
#include <cstdlib>
#include <iostream>
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;
}
複製代碼
作者:
蔡佾辰
時間:
2017-8-2 11:33
#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";
}
else if(a>b)
{
cout<< "a<b" ;
}
else
{
cout<< "a=b";
}
system("pause");
return 0;
}
複製代碼
作者:
黃宇瑄
時間:
2017-8-2 11:38
#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;
}
複製代碼
作者:
黃宇綸
時間:
2017-8-2 11:39
#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(b>a)
{
cout<<"b>a"<<endl;
}
else
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
作者:
湯東緯
時間:
2017-8-2 11:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
//宣告
int a=0;
int b=0;
if(a>b)
{
cout<<"a>b"<<"\r\n";
}
else if(a<b)
cout<<"a<B"<<"\r\n";
else
{
cout<<"a=b"<<"\r\n";
}
cout<<"請輸入a的值";
cin>>a;
cout<<"請輸入b的值";
cin>>b;
cout<<"a="<<"\r\n";
cout<<"b="<<"\r\n";
cout<<"a=b"<<"\r\n";
system("pause");
return 0;
}
複製代碼
作者:
邱路加
時間:
2017-8-2 13:24
#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
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
for(int i=1;i<10;i++)
{
cout<<"第"<<i<<"名"<<endl;
}
system("pause");
}
複製代碼
作者:
邱路加
時間:
2017-8-2 15:04
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int o=0;
int l=0;
cout<<"請輸入紅隊的分數"<<endl;
cin >> l ;
cout<<"請輸入綠隊的分數"<<endl;
cin >> o ;
if(l>o)
{
cout<<"紅隊獲勝"<<endl;
}
else if(l<o)
{
cout<<"綠隊獲勝"<<endl;
}
else if(l=o)
{
cout<<"雙贏 恭喜"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2