提交时间:2024-11-30 10:55:08

运行 ID: 864

#include<bits/stdc++.h> using namespace std; int main(){ int x,y; cin>>x<<y; if(x>y) { cout<<x*x;//setprecision(2)<<fixed<<1.98*x; } else { cout<<y*y;//setprecision(2)<<fixed<<1.68*x; } }