標題:
三數中找出最大的數
[打印本頁]
作者:
陳品肇
時間:
2018-11-15 21:59
標題:
三數中找出最大的數
[attach]5283[/attach]
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e;
cout<<"請依序輸入三個數: ";
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三數中最大的數為: "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
田宇任
時間:
2018-11-17 10:37
#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-11-17 10:39
本帖最後由 陳潔歆 於 2018-11-17 10:43 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int w,x,y,z;
cout<<"請任意輸入三個數: ";
cin>>w>>x>>y;
z = (w>x)?w:x;
z = (z>y)?z:y;
cout<<"三數中最大的數為: "<<z<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蘇昱全
時間:
2018-11-17 10:44
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int x,y,z,tmp;
cout<<"請輸入三個數:";
cin>>x>>y>>z;
tmp = (x>y)?x:z;
tmp = (tmp>z)?tmp:z;
cout<<"三數中最大的數為:"<<tmp<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
湯郡一
時間:
2018-11-17 10:46
#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;
tmp=(tmp>z)?tmp:z;
cout<<"三數中最大的數為: "<<tmp<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
楊侍穎
時間:
2018-11-19 18:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e;
cout<<"請依序輸入三個數: ";
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三數中最大的數為: "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
楊侍穎
時間:
2018-11-19 19:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e,f,g;
cout<<"請依序輸入四個數: ";
cin>>a>>b>>c>>d;
c=a>b?a:b;
e=c>d?c:d;
g=c>e?c:e;
cout<<"四數中最大的數為: "<<g<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭元富
時間:
2018-11-20 18:34
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請依序輸入三個數:";
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?e:c;
cout<<"三數中最大的數為:"<<e<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2