標題:
三數中找出最大的數
[打印本頁]
作者:
陳品肇
時間:
2019-5-18 09:06
標題:
三數中找出最大的數
本帖最後由 陳品肇 於 2019-5-18 10:51 編輯
[attach]6494[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,max;
cout<<"請依序輸入三個數字:";
cin>>a>>b>>c;
max = (a>b)?a:b; //如果a>b 就回傳a否則回傳b
max = (max>c)?max:c;
cout<<max<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃傳耀
時間:
2019-5-18 10:55
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,num;
cout<<"請輸入三個數字:";
cin>>a>>b>>c;
num = (a>b)?a:b;
num = (num>c)?num:c;
cout<<num<<endl;;
system("pause");
return 0;
}
複製代碼
作者:
洪藜芸
時間:
2019-5-18 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,s,t,z;
cout<<"請輸入三個數:"<<endl;
cin>>a>>s>>t;
z =(a>s)?a:s;
z =(z>t)?z:t;
cout<<z<<endl;
system("pause");
return 0;
}
複製代碼
作者:
洪子涵
時間:
2019-5-18 10:57
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,max;
cout<<"請輸入三個數";
cin>>a>>b>>c;
max= (a>b)?a:b;
max= (max>c)?max:c;
cout<<max<<endl;
system("pause");
return 0;
}
複製代碼
作者:
謝蓮金
時間:
2019-5-18 10:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d;
cout<<"請輸入三個數字:"<<endl;
cin>>a>>b>>c;
d = (a>b)?a:b;
d = (d>c)?d:c;
cout<<d<<"比較大"<<endl;
system("pause");
return 0;
}
複製代碼
作者:
邱楷宸
時間:
2019-5-18 10:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,max;
cout<<"請依序輸入三個數字並按enter:";
cin>>a>>b>>c;
max = (a>b)?a:b;
max = (max>c)?max:c;
cout<<max<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王建葦
時間:
2019-5-25 09:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z,max;
cout<<"請輸入三個值:";
cin>>x>>y>>z;
max=(x>y)?x:y;
max=(max>z)?max:z;
cout<<max<<endl;
system("pause");
return 0;
}
複製代碼
作者:
李易展
時間:
2019-5-29 20:09
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,max;
cout<<"請依序輸入三個數字:";
cin>>a>>b>>c;
max = (a>b)?a:b;
max = (max>c)?max:c;
cout<<max<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳宇柏
時間:
2019-6-18 17:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請輸入3個整數: ";
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"最大的數為: "<<e<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2