標題:
三數中找出最大的數
[打印本頁]
作者:
陳品肇
時間:
2018-12-8 14:45
標題:
三數中找出最大的數
[attach]5464[/attach]
作者:
趙一鳴
時間:
2018-12-8 15:19
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d;
re:
cout<<"請輸入三個數: ";
cin>>a>>b>>c;
d=(a>b)?a:b;
d=(d>c)?d:c;
cout<<"最大的數是: "<<d<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
章幼莛
時間:
2018-12-8 15:20
本帖最後由 章幼莛 於 2018-12-15 13:34 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
start:
int a,b,c,d;
cout<<"請輸入3個任意數:";
cin>>a>>b>>c;
d=(a>b)?a:b;
d=(d>c)?d:c;
cout<<"最大的數是:"<<d<<endl;
goto start;
system("pause");
return 0;
}
複製代碼
回復
1#
陳品肇
作者:
曲書辰
時間:
2018-12-8 15:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z,tep=0;
cout<<"請任意輸入三個數:";
cin>>x>>y>>z;
tep=(x>y)?x:y;
tep=(tep>z)?tep:z;
cout<<tep<<endl;
system("pause");
return 0;
}
複製代碼
作者:
吳孟書
時間:
2018-12-8 15:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int x,y,z,tmp;
cout<<"請輸入三個整數:";
cin>>x>>y>>z;
tmp=(x>y)?x:y;
tmp=(tmp>z)?tmp:z;
cout<<"三個整數中最大的數是:"<<tmp<<endl;
system("pause");
return 0;
}
複製代碼
作者:
王瑞喻
時間:
2018-12-8 15:30
本帖最後由 王瑞喻 於 2019-5-23 14:50 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{ re:
int x,y,z,tmp;
cout<<"請輸入任意三個數:";
cin>>x>>y>>z;
tmp=(x>y)?x:y; //如果x>y就回傳x,否則回傳y
tmp=(tmp>z)?tmp:z;
cout<<"三數中最大的數為:"<<tmp<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
洪寬瀧
時間:
2018-12-8 15:32
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
jeb:
int j,e,b,pig;
cout<<"請任意輸入三個數:";
cin>>j>>e>>b;
pig= (j>e)?j:e;
pig= (pig>b)?pig:b;
cout<<pig;
goto jeb; //gpf 66hbnfbgdvvvvvdfvaesvasvvds
system("pause");
return 0;
}
複製代碼
作者:
周孫印
時間:
2018-12-15 12:46
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d;
re:
cout<<"請輸入三個數: ";
cin>>a>>b>>c;
d=(a>b)?a:b;
d=(d>c)?d:c;
cout<<"最大的數是: "<<d<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2