80求调
  • 板块灌水区
  • 楼主Harry_Potter32
  • 当前回复11
  • 已保存回复12
  • 发布时间2025/1/13 20:14
  • 上次更新2025/1/13 20:24:53
查看原帖
80求调
1581583
Harry_Potter32楼主2025/1/13 20:14
#include <bits/stdc++.h>
using namespace std;
int a[1000],maxx=0;
int main() {
	for(int i=1;i<=3;i++){
		cin>>a[i];
	}
	for(int i=1;i<=3;i++){
		if(a[i]>maxx){
			maxx=a[i];
		}
	}
	cout<<maxx;
	return 0;
}
2025/1/13 20:14
加载中...