標題:
三數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2019-10-4 20:02
標題:
三數中找出最大的數
#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-10-4 20:19
#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-10-4 20:20
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-10-4 20:21
#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-10-4 20:23
#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-10-4 20:23
#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-10-4 20:23
#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-10-4 20:24
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
banana:
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 banana;
system("pause");
return 0;
}
複製代碼
作者:
董宸佑
時間:
2019-10-4 20: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;
}
複製代碼
作者:
蔡忻霓
時間:
2019-10-4 20:25
#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-10-4 20: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;
}
複製代碼
作者:
施褕均
時間:
2019-10-4 20:28
#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:e;
cout<<"三數中最大的是: "<<e<<endl;
system("pause");
return 0;
}
複製代碼
作者:
陳宥穎
時間:
2019-10-4 20:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
yoyoy:
int a,b,c,d,e,f,g;
cout<<"請依序輸入4個數: ";
cin>>a>>b>>c>>d; //ab=e
e=a>b?a:b;
f=e>c?e:c;
g=f>d?f:d;
cout<<"最大的數是"<<g<<endl;
goto yoyoy;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2