2 条题解

  • 0
    @ 2025-5-17 10:54:23

    #include<bits/stdc++.h> using namespace std; int i; float f; double d; char c; int main(){ scanf("%c%d%f%lf",&c,&i,&f,&d); printf("%c %d %.6f %.6lf",c,i,f,d); return 0; }

    • 0
      @ 2024-10-3 16:14:57

      #include <bits/stdc++.h> using namespace std; int i; float f; double d; char c; int main(){ scanf("%c%d%f%lf",&c,&i,&f,&d); printf("%c %d %6f %6lf",c,i,f,d); return 0;

      }

      • 1

      信息

      ID
      1697
      时间
      1000ms
      内存
      128MiB
      难度
      4
      标签
      递交数
      30
      已通过
      16
      上传者