標題:
四數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2013-11-23 17:32
標題:
四數中找出最大的數
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g;
cout<<"請依序輸入四個數: "; //數與數之間為空格或Enter鍵
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(c>d)?c:d;
g=(e>f)?e:f;
cout<<"四數中最大的數為: "<<g<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-11-23 17:35
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g;
cout<<"請依序輸入四個數:"<<endl;
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(c>d)?c:d;
g=(e>f)?e:f;
cout<<"四數中最大的數為:"<<g<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-11-23 17:35
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f, g;
cout<<"請依序輸入4個數:";
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(c>d)?c:d;
g=(e>f)?e:f;
cout<<"4數中較大的數為:"<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-11-23 17:36
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g;
cout<<"請依序輸入四個數:";
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(c>d)?c:d;
g=(e>f)?e:f;
cout<<"四數中較大的數為"<<g<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-11-23 17:37
本帖最後由 張郁庭 於 2013-11-23 17:44 編輯
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f, g;
cout << "請依序輸入四個數: ";
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(c>d)?c:d;
g=(e>f)?e:f;
cout<<"四數中最大的數為: "<<g<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-11-23 17:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e,f,g;
cout<<"請依序輸入四個數:";
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(c>d)?c:d;
g=(e>f)?e:f;
cout<<"四數中較大的數為:"<<g<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-11-23 17:37
#include <iostream>
#include<cstdlib>
using namespace std;
int main( )
{
int a, b, c, d, e,f,g;
cout<<"輸入4個數:";
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(c>b)?c:d;
g=(e>f)?e:f;
cout<<"最大的數是:"<<g<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張彥承
時間:
2013-11-23 17:42
#include <iostream>
#include <cstdlib>
using namespace std;
int main ()
{
int a,b,c,d,e,f,g;
cout<<"please enter four numbers:";
cin>>a>>b>>c>>d;
e=(a>b)?a:b;
f=(c>d)?c:d;
g=(e>f)?e:f;
cout<<"the biggest of four;"<<g<<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2