2 条题解

  • 1
    @ 2025-11-30 9:29:10
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        char a;
        int n;
        double b,c;
        cin>>a>>n>>b>>c;
        cout<<a<<" "<<n<<" ";
        printf("%.6lf %.6lf",b,c);
        return 0;
    }
    
    • 0
      @ 2026-2-7 19:52:02
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	string a,b;
      	float c,d;
      	cin>>a>>b>>c>>d;
      	cout<<fixed<<setprecision(6);
      	cout<<a<<" "<<b<<" "<<c<<" "<<d;
      	return 0;
      }
      
      • 1

      信息

      ID
      6880
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      25
      已通过
      21
      上传者