標題:
[隨堂測驗] 四數中找出最大的數
[打印本頁]
作者:
方浩葦
時間:
2024-6-22 06:49
標題:
[隨堂測驗] 四數中找出最大的數
作者:
林少謙
時間:
2024-6-22 15:22
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int w,x,y,z;
cout<<"請輸入4個數字:";
cin>>w>>x>>y>>z;
if(w>x&&w>y&&w>z)
cout<<"4個數中最大的數為"<<w<<endl;
else if(x>w&&x>y&&x>z)
cout<<"4個數中最大的數為"<<x<<endl;
else if(y>w&&y>x&&y>z)
cout<<"4個數中最大的數為"<<y<<endl;
else if(z>w&&z>y&&z>x)
cout<<"4個數中最大的數為"<<z<<endl;
else
cout<<"數字重複!"<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-6-22 16:15
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int w,x,y,z;
cout<<"請輸入四個數字:";
cin>>w;
cin>>x;
cin>>y;
cin>>z;
if(w>x && w>y && w>z){
cout<<w<<"最大";
}
else if(x>w && x>y && x>z){
cout<<x<<"最大";
}
else if(y>w && y>x && y>z){
cout<<y<<"最大";
}
else if(z>w && z>y && z>x){
cout<<z<<"最大";
}
system("pause");
return 0;
}
複製代碼
作者:
高湘庭
時間:
2024-6-22 16:29
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int a,b,c,d,e,f,g;
cout<<"請依序輸入四個數字";
cin>>a>>b>>c>>d;
e=a>b?a:b;
f=e>c?e:c;
g=f>d?f:d;
cout<<"四個數字中最大的是"<<g<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
劉奕劭
時間:
2024-6-29 14:23
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int a,b,c,d;
cout<<"請依序輸入四個數:"<<endl;
cin>>a>>b>>c>>d;
if(a>b&&a>c&&a>d)
cout<<"四數中最大的數為: "<<a<<endl;
else if(b>a&&b>c&&b>d)
cout<<"四數中最大的數為: "<<b<<endl;
else if(c>a&&c>b&&c>d)
cout<<"四數中最大的數為: "<<c<<endl;
else if(d>a&&d>b&&d>c)
cout<<"四數中最大的數為: "<<c<<endl;
else
cout<<"數字重複!"<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
洪榮辰
時間:
2024-6-29 14:38
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
re:
int a, b, c, d, e, f, g;
cout<<"請依序輸入四個數: ";
cin>>a>>b>>c>>d;
e=a>b?a:b;
f=b>c?b:c;
g=c>d?c:d;
cout<<"四數中最大的數為: "<<g<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
陳妍蓁
時間:
2024-6-29 14:41
#include<iostream>
#include<cstdlib>
using namespace std;
int main(){
re:
int w,x,y,z ,a,b,c;
cout<<"請依序輸入四個整數"<<endl;
cin>>w>>x>>y>>z;
a=w>x?w:x;
b=a>y?a:y;
c=b>z?b:z;
cout<<"四數中最大的是"<<c<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李唯銘
時間:
2024-6-29 14:42
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int a, b, c, d, e, f, g;
re:
cout<<"請任意輸入四個數";
cin>>a>>b>>c>>d;
e=a>b?a:b;
f=c>e?c:e;
g=d>f?d:f;
cout<<"四數中最大的是"<<g<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
作者:
李偈睿
時間:
2024-7-13 14:04
#include<iostream>
#include<cstdlib>
using namespace std;
main()
{
re:
int a,b,c,d;
cout<<"請輸入任意四個數字"<<endl;
cin>>a>>b>>c>>d;
if(a>b && a>c && a>d)
cout<<"四個數中最大的是"<<a<<endl;
else if(b>a && b>c && b>d)
cout<<"四個數中最大的是"<<b<<endl;
else if(c>a && c>b && c>d)
cout<<"四個數中最大的是"<<c<<endl;
else if(d>a && d>b && d>c)
cout<<"四個數中最大的是"<<d<<endl;
else
cout<<"數字重複!"<<endl;
cout<<endl;
goto re;
system("pause");
return 0;
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2