编程:输入三个整数x,y,z。找出去中的最大者并输出。

2024-12-20 01:44:17
推荐回答(1个)
回答1:

我学的C++,用c++给你编哈~
#include
using namespace std;
int max(int x,int y,int z)
{
if(x>=y&&y>=z)
return x;
else if(x>=y&&z>=x)
return z;
else if(x<=y&&y<=z)
return z;
else
return y;
}
int main(void)
{
int x,y,z;
cout<<"pls inyput three numbers:";
cin>>x>>y>>z;
cout<<"三个数中最大的数为"< return 0;
}

我刚学了一学期的c++,编的不是很简单,勉强看看吧~