5 条题解

  • 2
    @ 2025-2-14 17:57:27
    #include<bits/stdc++.h>
    #define yy return 0;
    using namespace std;
    double a;
    int main(){cin>>a;cout<<fixed<<setprecision(3)<<a;yy}
    • 1
      @ 2025-6-12 18:28:57

      printf被孤立了?

      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
          double n;cin>>n;
          printf("%.3f",n);
          return 0;
      }
      
      • 1
        @ 2025-6-8 15:59:20

        这不用多说吧。。。

        直接上代码:

        #include<bits/stdc++.h>
        using namespace std;
        
        int main(){
        	double er;
        	cin>>er;
        	cout<<fixed<<setprecision(3)<<er; 
        	return 0;
        }
        
        • 1
          @ 2024-12-10 13:01:00

          #include<bits/stdc++.h> using namespace std; int main() { float a; cin >> a; cout << fixed << setprecision(3) << a; return 0; }

          • 1

            话不多说,开写。 #include<bits/stdc++.h> using namespace std; float a; int main(){ cin>>a; cout<<fixed<<setprecision(3)<<a; return 0; }

            • 1

            信息

            ID
            4471
            时间
            1000ms
            内存
            512MiB
            难度
            1
            标签
            (无)
            递交数
            357
            已通过
            176
            上传者