標題:
三數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2019-7-20 10:34
標題:
三數中找出最大的數
#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;
}
複製代碼
作者:
蔡少宇
時間:
2019-7-20 11:27
#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;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
鄭羽捷
時間:
2019-7-20 11:28
#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
}
複製代碼
作者:
曾宥程
時間:
2019-7-20 11:29
#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;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉愷恩
時間:
2019-7-20 11:29
#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;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
王翎璇
時間:
2019-7-20 11:30
#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;
}
複製代碼
作者:
林孟蓁
時間:
2019-7-20 11:33
#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;
}
複製代碼
作者:
郭哲維
時間:
2019-7-22 20:58
#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;
}
複製代碼
作者:
駱顗安
時間:
2020-6-11 17:00
本帖最後由 駱顗安 於 2020-6-11 17:05 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c,d,e;
cout<<"請依序輸入三個數:";
cin>>a>>b>>c;
cout<<endl;
cout<<"三數中數字最大的為";
d=a>b?a:b;
e=c>d?c:d;
cout<<e;
system("pause");
return 0;
}
複製代碼
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a,b,c;
cout<<"請依序輸入三個數:";
cin>>a>>b>>c;
cout<<endl;
cout<<"三數中數字最大的為";
for(int m=a+b+c;m>=0;m-=1)
if(m==a)
{
cout<<a;
m=0;
}
else if(m==b)
{
cout<<b;
m=0;
}
else if(m==c)
{
cout<<c;
m=0;
}
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2