镇乃天子

This commit is contained in:
2026-03-28 05:42:39 -04:00
parent 5abd338d57
commit aeaa1396af
3 changed files with 60 additions and 0 deletions

16
20260314/25b.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include<iostream>
using namespace std;
void w(int a,int b){
if(a>b)
cout<<a<<endl;
else
cout<<b<<endl;
}
int main(){
int a,b;
cout<<"请输入两个整数:";
cin>>a>>b;
w(a,b);
return 0;
}