3 条题解

  • 2
    @ 2025-2-14 18:01:29
    #include<bits/stdc++.h>
    #define yy return 0;
    using namespace std;
    char a;int b;float c;double d;
    int main(){cin>>a>>b>>c>>d;cout<<a<<" "<<b<<" "<<fixed<<setprecision(6)<<c<<" "<<d;yy}
    • 1
      @ 2025-6-16 19:11:04
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          char n;int s;
          float t;double m;
          cin>>n>>s>>t>>m;cout<<n<<" "<<s<<" ";
          printf("%.6f",t);cout<<" ";
          printf("%.6f",m);
          return 0;
      }
      
      • 1

        #include<bits/stdc++.h> using namespace std; char a; int b; float c; double d; int main() { cin >> a >> b >> c >> d; cout << a << " " << b << " " << fixed << setprecision(6) << c << " " << d; return 0; }

        • 1

        信息

        ID
        4473
        时间
        1000ms
        内存
        128MiB
        难度
        1
        标签
        (无)
        递交数
        308
        已通过
        152
        上传者