標題:
三數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2016-11-19 14:02
標題:
三數中找出最大的數
本帖最後由 tonyh 於 2019-9-17 21:03 編輯
#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;
}
複製代碼
作者:
曾彥翔
時間:
2016-11-19 14:24
#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;
}
複製代碼
作者:
朱聿謙
時間:
2016-11-19 14:26
#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;
}
複製代碼
作者:
許紘誌
時間:
2016-11-19 14:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
cout<<"請依序輸入三個數: ";
int a ,b ,c,d,e;
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三數中最大的數為: "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
/*
a b c
d c
e
*/
複製代碼
作者:
吳晉榕
時間:
2016-11-19 14:28
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e;
cout<<"請依序輸入三個數: "<<endl;
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三數最大的數為: "<<e>>endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
黃宥鈞
時間:
2016-11-19 14:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a,b,c,d,e;
cout<<"請依序輸入三個數: "<<endl;
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"最大的數為:"<<e<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
譚暐霖
時間:
2016-11-19 14: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;
}
複製代碼
作者:
洪榜蔓
時間:
2016-11-19 14:31
#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?d:c;
cout<<"三數中最大的數為:"<<e<<endl<<endl;
system("pause");
return 0;
}
複製代碼
作者:
朱聿謙
時間:
2016-11-19 14:45
#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;
}
複製代碼
作者:
蔡幸融
時間:
2016-11-23 18:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a ,b ,c ,d ,e;
cout<<"請依序輸入三個數: "<<endl;
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三數中最大的數為: "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蕭澧邦
時間:
2016-11-23 18:45
#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?d:c;
cout<<"三數中最大的數為"<<e<<endl;
cout<<endl;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2