標題:
if 判斷式
[打印本頁]
作者:
游東祥
時間:
2014-7-3 11:13
標題:
if 判斷式
讓使用者輸入兩個數字,把數字顯示出來後同時對這兩個數字進行比較,並把比較結果顯示出來。
作者:
梁和雋
時間:
2014-7-3 11:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x:";
cin>>x;
cout<<"請輸入y:";
cin>>y;
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
if(x*2>y)
{
cout<<"x乘以2大於y" <<endl;
}
if(x*2<y)
{
cout<<"x乘以2小於y" <<endl;
}
if(x*2==y)
{
cout<<"x乘以2等於y" <<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
洪振庭
時間:
2014-7-3 11:15
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int 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;
}
複製代碼
作者:
陳威臣
時間:
2014-7-3 11:15
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<< "請輸入a:" << endl;
cin>> a;
cout<< "請輸入b:" << endl;
cin>> b;
cout<< " a是:"<< a;
cout<< " b是:"<< b;
if (a > b)
{
cout << "a大於b" << endl;
}
if (a < b)
{
cout << "a小於b" << endl;
}
if (a == b)
{
cout << "a 等於b" << endl;
}
system("pause");
return 0;
}
複製代碼
作者:
呂嘉勳
時間:
2014-7-3 11:16
本帖最後由 呂嘉勳 於 2014-7-3 11:18 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if (a>b)
{
cout<<"a大於b"<<endl;
}
if (a<b)
{
cout<<"a小於b"<<endl;
}
if (a==b)
{
cout<<"a等於b"<<endl;
}
system("pause");
return 0;
複製代碼
作者:
陳品諨
時間:
2014-7-3 11:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout << "請輸入a:";
cin >> a;
cout << "請輸入b:";
cin >> b;
cout << "a =" << a <<endl;
cout << "b =" << b <<endl;
if (a>b)
{
cout << "a 大於 b" << endl;
}
if (a<b)
{
cout << "a 小於 b" << endl;
}
if (a==b)
{
cout << "a 等於 b" << endl;
}
system("pause");
return 0;
複製代碼
作者:
李美螢
時間:
2014-7-3 11:16
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a>b)
{
cout<<"a大於b"<<endl;
}
if(a<b)
{
cout<<"a小於b"<<endl;
}
if(a==b)
{
cout<<"a等於b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
林侑成
時間:
2014-7-3 11:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<< "請輸入x:";
cin>>x;
cout<< "請輸入y:";
cin>>y;
cout<< "x=" << x <<endl;
cout<< "y=" << y <<endl;
if(x > y)
{
cout<<"你是笨蛋"<<endl;
}
if(x < y)
{
cout<<"你是笨蛋"<<endl;
}
if(x == y)
{
cout<<"你是笨蛋"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
胡宸綱
時間:
2014-7-3 11:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int i;
cout << "請輸入a"<<endl;
cin >> a;
cout << "請輸入i"<<endl;
cin >> i;
cout << "a="<<a<<endl;
cout << "i="<<i<<endl;
if(a>i)
{
cout<<"a>i"<<endl;
}
IF(I>A)
{
COUT<<"I>A"<<endl;
}
if(a==i)
{
cout<<"a=i"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
李宇宸
時間:
2014-7-3 11:17
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout << "請輸入a";
cin >> a;
cout << "請輸入b";
cin >> b;
cout << "a=" << a << endl;
cout << "b=" << b << endl;
if(a > b)
{
cout << "a 大於 b"<< endl;
}
if(a < b)
{
cout << "a 小於 b"<< endl;
}
{
if(a == b)
cout << "a 等於 b"<< endl;
}
system("pause");
return 0;
}
作者:
王君玄
時間:
2014-7-3 11:18
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a";
cin>>a;
cout<<"請輸入b";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a>b)
{
cout<<"a大於b"<<endl;
}
if(a<b)
{
cout<<"a小於b"<<endl;
}
if(a==b)
{
cout<<"a等於b"<<endl;
}
system("pause");
return 0;
複製代碼
作者:
李知易
時間:
2014-7-3 11:18
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout << "請輸入 a:";
cin >> a;
cout << "請輸入 b:";
cin >> b;
cout <<"a ="<< a << endl;
cout <<"b ="<< b << endl;
if (a > b)
{
cout <<"a 大於 b"<< endl;
}
if (a < b)
{
cout <<"a 小於 b"<< endl;
}
if (a == b)
{
cout <<"a 等於 b"<< endl;
}
system ("pause");
return 0;
}
複製代碼
作者:
李宇宸
時間:
2014-7-3 11:18
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout << "請輸入a";
cin >> a;
cout << "請輸入b";
cin >> b;
cout << "a=" << a << endl;
cout << "b=" << b << endl;
if(a > b)
{
cout << "a 大於 b"<< endl;
}
if(a < b)
{
cout << "a 小於 b"<< endl;
}
{
if(a == b)
cout << "a 等於 b"<< endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳品諨
時間:
2014-7-3 11:18
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout << "請輸入a:";
cin >> a;
cout << "請輸入b:";
cin >> b;
cout << "a =" << a <<endl;
cout << "b =" << b <<endl;
if (a>b)
{
cout << "a 大於 b" << endl;
}
if (a<b)
{
cout << "a 小於 b" << endl;
}
if (a==b)
{
cout << "a 等於 b" << endl;
}
system("pause");
return 0;
複製代碼
作者:
李大全
時間:
2014-7-3 11:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"輸入a:";
cin>>a;
cout<<"輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a>b)
{
cout<<"a大於b"<<endl;
}
if(a<b)
{
cout<<"a小於b"<<endl;
}
if(a==b)
{
cout<<"a等於b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
張宸碩
時間:
2014-7-3 11:19
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a"<< endl;
cin>> a;
cout<<"請輸入b"<< endl;
cin>> b;
cout<<"a="<< a << endl;
cout<<"b="<< b << endl;
cout<<"帥啦"<< endl;
if (a > b)
{
cout<<"a > b"<< endl;
}
if (a < b)
{
cout<<"a < b"<< endl;
}
if (a == b)
{
cout<<"a == b"<< endl;
}
system("pause");
return 0;
}
複製代碼
作者:
蔡岳庭
時間:
2014-7-3 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a"<<endl;
cin>>a;
cout<<"請輸入b";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a>b)
{
cout<<"a大於b"<<endl;
}
if(a<b)
{
cout<<"a小於b"<<endl;
}
if(a==b)
{
cout<<"a等於b"<<endl ;
}
複製代碼
作者:
洪振庭
時間:
2014-7-3 11:29
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
for(int i=1;i<10;i++)
{
cout<<"第"<<i<<"位"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-7-3 11:34
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if(a>b)
{
cout<<"a<b"<<"吃土吧你,說甚麼a大於b"<<endl;
}
if(a<b)
{
cout<<"a<b"<<"去死吧你,居然是a小於b"<<endl;
}
if(a==b)
{
cout<<"a=b"<<"都被騙了,就說其實是a等於b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
謝雨岑
時間:
2014-7-3 11:37
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入 a :";
cin>>a;
cout<<"請輸入 b :";
cin>>b;
cout<<"a="<<a<<endl;
cout<<"b="<<b<<endl;
if (a>b)
{
cout<<"a大於b"<<endl;
}
if (a<b)
{
cout<<"a小於b"<<endl;
}
if (a==b)
{
cout<<"a等於b"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2