1
0
forked from newde/homework

镇乃天子

This commit is contained in:
2026-04-11 05:40:40 -04:00
parent eb13818869
commit f9a50b3be6
4 changed files with 30 additions and 11 deletions

16
666/最大值.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include<iostream>
using namespace std;
int mymax(int x_int,int y_int){
if(x_int>y_int)
return x_int;
else;
return y_int;
}
int main(){
int i,j;
cin>>i>>j;
cout<<mymax(i,j)<<endl;
return 0;
}