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