標題:
二數中找出較大的數
[打印本頁]
作者:
張翼安
時間:
2015-12-5 00:07
標題:
二數中找出較大的數
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
c=(a>b)?a:b;
cout<<"兩數中較大的數為"<<c<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-12-5 11:09
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
cout<<"<歡迎使用自動比大小軟體>"<<endl;
cout<<"<製作者 : 影武 嚴禁複製>"<<endl;
int x,y,z;
cout<<"~請輸入第一個數:";
cin>>x;
cout<<"~請輸入第二個數:";
cin>>y;
z=(x>y)?x:y;
cout<<"~兩數中較大的數為"<<z<<endl;
cout<<"<製作者 : 影武 嚴禁複製>"<<endl;
cout<<"<*~@感謝您的使用@~*r>"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-12-5 11:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,ans;
cout<<"請輸入第一個數:";
cin>>x;
cout<<"請輸入第二個數:";
cin>>y;
ans=(x>=y)?x:y;
cout<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳承勳
時間:
2015-12-5 11:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x, y, answer;
cout << "請輸入第一個數字:" ;
cin >> x;
cout << "請輸入第二個數字:" ;
cin >> y;
answer = (x >= y)? x : y;
cout << answer ;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-12-5 11:11
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
c=(a>b)?a:b;
cout<<"兩數中較大的數為"<<c<<endl;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-12-5 11:12
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,ans;
cout<<"請輸入第一個數:";
cin>>x;
cout<<"請輸入第二個數:";
cin>>y;
ans=(x>=y)?x:y;
cout<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-12-5 11:16
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int q,w,ans;
cout<<"請輸入第一個數:"<<endl;
cin>>q;
cout<<"請輸入第二個數:"<<endl;
cin>>w;
ans=(q>=w)? q:w;
cout<<"ans"<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2