標題:
if...else if...else 判斷式
[打印本頁]
作者:
陳品肇
時間:
2018-2-6 10:19
標題:
if...else if...else 判斷式
進階
作者:
連昱維
時間:
2018-2-6 10:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x:";
cin>>x;
cout<<"請輸入y:";
cin>>y;
if(x>y)
{
cout<<"x大於y"<<endl;
}
else if(x<y)
{
cout<<"x小於y"<<endl;
}
else
{
cout<<"x等於y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳鼎元
時間:
2018-2-6 10:40
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y;
cout<<"請輸入x:";
cin>>x;
cout<<"請輸入y:";
cin>>y;
if(x>y)
{
cout<<"x大於y"<<endl;
}
else if(x<y)
{
cout<<"x小於y"<<endl;
}
else
{
cout<<"x等於y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
任書嫻
時間:
2018-2-6 10:45
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,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;
}
複製代碼
作者:
許芊寧
時間:
2018-2-6 10:47
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<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;
}
複製代碼
作者:
董帝辰
時間:
2018-2-6 10:53
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"輸入a:";
cin>>a;;
cout<<"輸入b:";
cin>>b;
cout<<"a="<< endl;
cout<<"b="<< 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;
}
複製代碼
作者:
劉翃志
時間:
2018-2-6 10:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<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;
}
複製代碼
作者:
許哲睿
時間:
2018-2-6 11:47
{
int a,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=y"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2