標題:
三數中找出最大的數
[打印本頁]
作者:
張翼安
時間:
2015-12-5 00:08
標題:
三數中找出最大的數
#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;
}
複製代碼
作者:
吳承勳
時間:
2015-12-5 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c,answer;
cout << "請輸入第一個數字:" ;
cin >> a;
cout << "請輸入第二個數字:" ;
cin >> b;
cout << "請輸入第三個數字:" ;
cin >> c;
answer = (a >= b)? a : b;
answer = (c >= answer)? c : answer;
cout << answer ;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2015-12-5 11:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c,answer;
cout << "請輸入第一個數字:" ;
cin >> a;
cout << "請輸入第二個數字:" ;
cin >> b;
cout << "請輸入第三個數字:" ;
cin >> c;
answer = (a >= b)? a : b;
answer = (c >= answer)? c : answer;
cout << answer ;
system("pause");
return 0;
}
複製代碼
作者:
蔡庭豪
時間:
2015-12-5 11:39
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int x,y,z,ans,a;
cout<<"請輸入x的值:";
cin>>x;
cout<<"請輸入y的值::";
cin>>y;
cout<<"請輸入z的值::";
cin>>z;
a=(x>=y)?x:y;
ans=(a>=z)?x:y;
cout<<"兩數中較大的數為"<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-12-5 11:40
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int q,w,e,ans;
cout<<"請輸入第一個數:"<<endl;
cin>>q;
cout<<"請輸入第二個數:"<<endl;
cin>>w;
cout<<"請輸入第三個數:"<<endl;
cin>>e;
ans=(q>=w)? q:w;
ans=(b>=e)? b:e;
cout<<"ans"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張文擇
時間:
2015-12-5 11:42
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int q,w,e,ans;
cout<<"請輸入第一個數:"<<endl;
cin>>q;
cout<<"請輸入第二個數:"<<endl;
cin>>w;
cout<<"請輸入第三個數:"<<endl;
cin>>e;
ans=(q>=w)? q:w;
ans=(ans>=e)? ans:e;
cout<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張健勳
時間:
2015-12-5 11:45
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int q,w,e,ans;
cout<<"請輸入第一個數:"<<endl;
cin>>q;
cout<<"請輸入第二個數:"<<endl;
cin>>w;
cout<<"請輸入第三個數:"<<endl;
cin>>e;
ans=(q>=w)? q:w;
ans=(ans>=e)? ans:e;
cout<<ans<<endl;
system("pause");
return 0;
}
複製代碼
作者:
蔡季樺
時間:
2015-12-5 11:46
#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