ac

root  •  2年前


include <bits/stdc++.h>

using namespace std; struct a { string b; char c; int d; double e; }; int main() {

a f;
cin>>f.b>>f.c>>f.d>>f.e;
cout<<f.b<<" "<<f.c<<" "<<f.d<<" ";
printf("%.1f\n",f.e);
return 0;

}


评论:

请先登录,才能进行评论