標題:
二數中找出較大的數
[打印本頁]
作者:
tonyh
時間:
2014-11-15 10:46
標題:
二數中找出較大的數
本帖最後由 tonyh 於 2014-11-15 11:14 編輯
#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;
}
複製代碼
作者:
洪振庭
時間:
2014-11-15 11:18
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸第一個數:";
cin>>a;
cout<<"請輸第二個數:";
c=(a>b)?a:b;
cout<<"兩數中較大的數為:"<<c<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝瀞儀
時間:
2014-11-15 11:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c;
cout<<"請依序輸入二個數字: ";
cin>>a>>b;
c=(a>b)?a:b;
cout<<"二數中較大的數為:"<<c;
cout<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李知易
時間:
2014-11-15 11:20
#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;
}
複製代碼
作者:
梁和雋
時間:
2014-11-15 11:22
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸兩個數:";
cin>>a>>b;
c=(a>b)?a:b;
cout<<c<<"較大"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李大全
時間:
2014-11-15 11:23
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請輸第一個數:";
cin>>a;
cout<<"請輸第二個數:";
c=(a>b)?a:b;
cout<<"兩數中較大的數為:"<<c<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2