Run ID:4617
提交时间:2024-08-24 15:16:33
#include<bits/stdc++.h> using namespace std; int main(){ int a=5,b=8; if(a>b){ cout<<"max="<<a<<endl; } else{ cout<<"max="<<b<<endl; } }