標題:
三數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2013-5-18 13:59
標題:
三數中找出最大的數
本帖最後由 tonyh 於 2013-5-18 14:20 編輯
#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;
}
/*
a b c
\ /\ /
d e
\ /
f
*/
複製代碼
作者:
鎧言
時間:
2013-5-18 14:23
#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;
}
複製代碼
作者:
黃柏維
時間:
2013-5-18 14:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請依序輸入三個數字:"<<endl;
cin>>a>>b>>c;
d=(a>b)?a:b;
e=(d>c)?d:c;
cout<<"三數最大值為: "<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
黃崇維
時間:
2013-5-18 14:24
#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;
}
複製代碼
作者:
林以諾
時間:
2013-5-18 14:24
#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;
}
複製代碼
作者:
劉泳鱔
時間:
2013-5-18 14:25
#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;
}
複製代碼
作者:
張瀚仁
時間:
2013-5-18 14:25
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f;
cout<<"請依序輸入3個數:"<<endl;
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;
}
複製代碼
作者:
郭凡瑛
時間:
2013-5-18 14:26
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f;
cout<<"請依序輸入三個數:";
cin>>a>>b>>c;
d=(a>b)?c:b;
e=(b>c)?b:c;
f=(d>e)?d:e;
cout<<"三數中最大的數為:"<<f<<endl;
system("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-5-18 14:27
#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)?a:c;
f=(d>e)?d:e;
cout<<"三數最大的數: "<<f<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱安
時間:
2013-5-18 14:27
#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;
}
複製代碼
作者:
長逸
時間:
2013-5-25 11:36
#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;
}
複製代碼
作者:
許逸群
時間:
2013-6-10 20:01
#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://istak.org.tw/seed/)
Powered by Discuz! 7.2