標題:
二數中找出較大的數
[打印本頁]
作者:
tonyh
時間:
2013-5-4 15:17
標題:
二數中找出較大的數
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, bigger;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
bigger=(a>b)?a:b; //a>b如果成立,則bigger的值為a,否則為b
cout<<"兩數中較大的數為"<<bigger<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張瀚仁
時間:
2013-5-4 15:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,bigger;
cout<<"請輸入第一個數: "<<endl;
cin>>a;
cout<<"請輸入第二個數: "<<endl;
cin>>b;
bigger=(a>b)?a:b;
cout<<"兩數中最大的數為"<<bigger<<endl;
system("pause");
return 0;
}
複製代碼
作者:
林以諾
時間:
2013-5-4 15:18
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b ,bigger;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
bigger=(a>b)?a:b;
cout<<"兩數中較大的數為:"<<bigger<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉泳鱔
時間:
2013-5-4 15:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b, bigger;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
bigger=(a>b)?a:b;
cout<<"兩數中最大的為"<<bigger<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃柏維
時間:
2013-5-4 15:21
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,bigger;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
bigger=(a>b)?a:b;
cout<<"兩數中最大的質為: "<<bigger<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-5-4 15:27
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, bigger;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
bigger=(a>b)?a:b;
cout<<"兩數中最大的數為"<<bigger<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-5-4 15:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, bigger;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
bigger=(a>b)?a:b;
cout<<"兩數中較大的數為"<<bigger<<endl;
system("pause");
return 0;
}
複製代碼
作者:
許逸群
時間:
2013-6-10 19:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y, bigger;
cout<<"請輸入一個數: ";
cin>>x;
cout<<"請輸入二個數: ";
cin>>y;
bigger=(x>y)?x:y;
cout<<"兩數中較大的數為: "<<bigger<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2