答案

C28 2023-12-24 15:41:42

#include<bits/stdc++.h> using namespace std;

int main() {
float x,y; cin>>x>>y; if(x>y) printf("%.2f",x); else printf("%.2f",y); return 0; }

共 1 条回复

U53