標題:
三數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2016-5-21 10:30
標題:
三數中找出最大的數
本帖最後由 tonyh 於 2016-5-21 10:56 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,e,f;
re:
cout<<"請依序輸入三個數字: ";
cin>>a>>b>>c;
e=a>b?a:b;
f=e>c?e:c;
cout<<"三數中最大的數為: "<<f<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
張孟軒
時間:
2016-5-21 10:58
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,e,f;
re:
cout<<"請輸入三個數字: ";
cin>>a>>b>>c;
e=a>b?a:b;
f=e>c?e:c;
cout<<"三數中最大的數為: "<<f<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
任立宇
時間:
2016-5-21 10:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a ,b ,c,d,e,f;
cout<<"請任意輸入三個數: ";
cin>>a>>b>>c;
e=a>b?a:b;
f=e>c?e:c;
cout<<"三數中最大的數為: "<<f<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
方宥鈞
時間:
2016-5-21 10:59
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,e,f;
re:
cout<<"請依序輸入三個數: ";
cin>>a>>b>>c;
e=a>b?a:b;
f=e>c?e:c;
cout<<"三數中最大的數是: "<<f<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃茂勛
時間:
2016-5-21 11:00
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,i,j;
re:
cout<<"請輸入三個數: ";
cin>>a>>b>>c;
i=a>b?a:b;
j=i>c?i:c;
cout<<"三個數中最大的數為: "<<j<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
高允懋
時間:
2016-5-21 11:01
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
float a,b,c,x,y;
cout<<"請輸入三個正整數:";
cin>>a>>b>>c;
x=(a>b)?a:b;
y=(x>c)?x:c;
cout<<a<<","<<b<<","<<c<<"三個數中,最大的是"<<y<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陸長辰
時間:
2016-5-21 11:03
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a ,b ,c,e,f;
cout<<"請輸入三個數: ";
cin>>a>>b>>c;
e=a>b?a:b;
f=e>c?e:c;
cout<<"三數最大的數為:"<<f<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳泓瑜
時間:
2016-5-21 11:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
float a,b,c,e,f;
cout<<"請輸入3個數:";
cin>>a>>b>>c;
e=a>b?a:b;
f=c>e?c:e;
cout<<"3數中最大的數為: "<<f<<endl<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
康湍榆
時間:
2016-5-21 11:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,e,f;
cout<<"請依序輸入三個數字: ";
cin>>a>>b>>c;
e=a>b?a:b;
f=e>c?e:c;
cout<<"三數中最大數為:"<<f<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2