標題:
三數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2013-11-23 17:12
標題:
三數中找出最大的數
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請輸入第一個數: ";
cin>>a;
cout<<"請輸入第二個數: ";
cin>>b;
cout<<"請輸入第三個數: ";
cin>>c;
d=(a>b)?a:b;
e=(d>c)?d:c;
cout<<"三數中最大的數為: "<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
施伯叡
時間:
2013-11-23 17:13
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
cout<<"請輸入第三個數:";
cin>>c;
d=(a>b)?a:b;
e=(d>c)?d:c;
cout<<"兩數中較大的數為:"<<e<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張峻瑋
時間:
2013-11-23 17:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
cout<<"請輸入第三個數:";
cin>>c;
d=(a>b)?a:b;
e=(d>c)?d:c;
cout<<"三數中較大的數為"<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
周雍程
時間:
2013-11-23 17:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e;
cout<<"請輸入第一個數:";
cin >> a;
cout<<"請輸入第二個數:";
cin >> b;
cout<<"請輸入第三個數:";
cin >> c;
d=(a>b)?a:b;
e=(d>c)?d:c;
cout<<"三數中較大的數為:"<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-11-23 17:14
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e;
cout << "請輸入第一個數: ";
cin >> a;
cout << "請輸入第二個數: ";
cin >> b;
cout << "請輸入第三個數: ";
cin >> c;
d=( a > b ) ? a : b;
e=( d > c ) ? d : c;
cout<<"三數中較大的數為: "<<c<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
張郁偵
時間:
2013-11-23 17:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請輸入第一個數:";
cin>>a;
cout<<"請輸入第二個數:";
cin>>b;
cout<<"請輸入第三個數:";
cin>>c;
d=(a>b)?a:b;
e=(d>c)?d:c;
cout<<"三數中教大的數為:"<<e<<endl;
system ("pause");
return 0;
}
複製代碼
作者:
劉得旗
時間:
2013-11-23 17:15
#include <iostream>
#include<cstdlib>
using namespace std;
int main( )
{
int a, b, c, d, e;
cout<<"輸入第1個數:";
cin>>a;
cout<<"輸入第2個數:";
cin>>b;
cout<<"輸入第3個數:";
cin>>c;
d=(a>b)?a:b;
e=(d>c)?d:c;
cout<<"最大的數是:"<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
張郁庭
時間:
2013-11-23 17:23
#include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e;
cout << "請輸入第一個數: ";
cin >> a;
cout << "請輸入第二個數: ";
cin >> b;
cout << "請輸入第三個數: ";
cin >> c;
d=( a < b ) ? a : b;
a=( d < c ) ? d : c;
cout<<"三數中最小的數為: "<<a<<endl;
system ("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2