標題:
if 判斷式
[打印本頁]
作者:
游東祥
時間:
2013-8-14 10:18
標題:
if 判斷式
#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;
}
複製代碼
作者:
蘇昱安
時間:
2013-8-14 10:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x;
int y;
cout<<"請輸入x:";
cin>> x,
cout<<"請輸入x:";
cin>> y,
cout<<"x="<<x<<endl;
cout<<"y="<<y<<endl;
if(x>y)
{
cout<<"x 大於 y"<<endl;
}
else if(x<y)
{
cout<<"x小於y"<<endl;
}
else
{
cout<<"x等於y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-8-14 10:19
#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<<"x 大於 y"<<endl;
}
else if(x < y)
{
cout<<"x 小於 y"<<endl;
}
else
{
cout<<"x 等於 y"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
陳寧莉
時間:
2013-8-14 10:19
#include <iostream> //引入輸出.入的指令
#include <cstdlib> //引入c的標準函式
using namespace std; //使用標準函式庫命名
int main() //程式從"main"執行
{
int a;
int b;
cout <<"請輸入a:" << endl;
cin >>a;
cout <<"請輸入b:" << endl;
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; //告訴程式執行正確
}
複製代碼
作者:
林以諾
時間:
2013-8-14 10:19
#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;
}
複製代碼
作者:
蔡秉修
時間:
2013-8-14 10:19
#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;
}
複製代碼
作者:
薛景謙
時間:
2013-8-14 10:19
#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;
}
複製代碼
作者:
李恆
時間:
2013-8-14 10:21
#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;
}
複製代碼
作者:
徐義翔
時間:
2013-8-14 10:21
#include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"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; //告訴程式執行正確
}
複製代碼
作者:
蔡凱益
時間:
2013-8-14 10:21
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"請輸入a:";
cin>>a;
cout<<"請輸入b:";
cin>>b;
cout<<"a="<<endl;
cout<<"b="<<endl;
if (a>b)
{
cout<<"a大於b";
}
else if(a<b)
{
cout<<"a小於b";
}
else(a=b)
{
cout<<"a等於b";
}
system("pause;");
return 0;
}
複製代碼
作者:
徐義翔
時間:
2013-8-14 10:22
#include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"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; //告訴程式執行正確
}
複製代碼
作者:
柯璟廷
時間:
2013-8-14 10:22
#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;
}
作者:
張彥承
時間:
2013-8-14 10:23
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a;
int b;
cout<<"enter a:";
cin>>a;
cout<<"enter 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 if(a=b)
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
複製代碼
作者:
施伯叡
時間:
2013-8-14 10:23
#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;
}
複製代碼
作者:
張峻瑋
時間:
2013-8-14 10:24
#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 ;
}
複製代碼
作者:
徐義翔
時間:
2013-8-14 10:24
#include <iostream> //引入輸出入指令
#include <cstdlib> //引入c語言標準函數
using namespace std; //使用標準函式庫命名空間
int main() //程式從"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; //告訴程式執行正確
}
複製代碼
作者:
林以璿
時間:
2013-8-14 10:25
[quote]
[/quote]#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 if (a<b)
{
cout<<"a等於b"<< endl;
}
system("pause");
return 0;
}
作者:
陳國蘢
時間:
2013-8-14 10:25
#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 if(a = b)
{
cout <<"a = b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-8-14 10:25
#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 (a = b)
{
cout<<"a 等於 b"<<endl;
}
system("pause");
return 0;
}
複製代碼
作者:
吳宗桓
時間:
2013-8-14 10:27
#include <iostream> //引入輸出輸入指令
#include <cstdlib> //引入c的語言 的標準函式
using namespace std; //用標準函式庫命名空間
int main() //程式從"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;
}
複製代碼
作者:
張郁庭
時間:
2013-8-14 10:28
#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");
return0;
複製代碼
作者:
張郁偵
時間:
2013-8-14 10:29
#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 if(a=b)
{
cout<<"a=b"<<endl;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2