標題:
三數中找出最大的數
[打印本頁]
作者:
tonyh
時間:
2016-5-30 09:43
標題:
三數中找出最大的數
作者:
蔡孟君
時間:
2016-5-30 10:05
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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-5-30 10:06
本帖最後由 謝易錚 於 2016-5-30 10:10 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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-5-30 10:06
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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-5-30 10:06
本帖最後由 林禹彤 於 2016-5-30 10:08 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
float a,b,c,d,e;
cout<<"請輸入3數: ";
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-5-30 10:07
本帖最後由 邱士杰 於 2016-5-30 10:13 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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-5-30 10:08
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
float 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-5-30 10:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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-5-30 10:10
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a, b, c, d, e;
re:
cout<<"請輸入3個數"<<endl;
cin>>a>>b>>c;
d=(a>b)?a:b;
e=(d>c)?d:c;
cout<<"3數中最大數為 "<<e<<endl<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉得榮
時間:
2016-5-30 10:10
本帖最後由 劉得榮 於 2016-5-30 10:11 編輯
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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-5-30 10:11
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
cout<<"請依序輸入3個數 ";
cin>>a>>b>>c;
d=a>b?a:b;
e=d>c?d:c;
cout<<"三數中最大的數為:"<<e<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
蔡孟庭
時間:
2016-5-30 10:14
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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-5-30 10:39
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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-6-4 13:37
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
float a,b,c,d,e;
re:
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;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2