17 条题解

  • 5
    @ 2023-5-30 13:50:51
    #include<iostream>
    #include<iomanip>
    using namespace std;
    int main(){
    	float a;
    	cin>>a;
    	cout<<fixed<<setprecision(3)<<a<<endl;
    	return 0;
    }
    

    信我!

    • 3
      @ 2023-3-29 16:22:24
      using namespace std;
      
      int main(){
      	double e;
      	cin>>e;
      	printf("%.3lf",e);
      	return 0;
      }
      
      • 1
        @ 2023-5-15 17:07:45

        #include<iostream> using namespace std; uutsing//这里不是对的,防作弊

        int main(){ double e; cin>>e; printf("%.3lf",e); return 0; }

        • 0
          @ 2023-3-29 16:21:03

          6

          • -2
            @ 2023-5-23 13:52:45

            #include<iostream> using namespace std;

            int main(){ double e; cin>>e; printf("%.3lf",e); return 0; }

          • -4
            @ 2023-3-29 16:24:03

            么么!

            • -5
              @ 2023-4-3 15:50:20

              ni ma de qun cuo

              • -5
                @ 2023-2-20 13:40:34

                #include<bits/stdc++.h> using namespace std; int main(){ double e; cin>>e; printf("%.3lf",e); return 0; }

                
                
                • -6
                  @ 2023-5-9 14:32:17

                  ?

                • -6
                  @ 2023-4-17 14:51:11

                  | col1 | col2 | col3 | | --- | --- | --- |````` | | | | | | | |

                  • -6
                    @ 2022-8-13 19:36:39
                    using namespace std;
                    
                    int main(){
                    	double e;
                    	cin>>e;
                    	printf("%.3lf",e);
                    	return 0;
                    }
                    

                    好简单!!!!

                    • -7
                      @ 2023-4-10 15:39:23

                      🚀️

                      • -7
                        @ 2023-4-10 15:39:10

                        莫看题解

                        • -7
                          @ 2022-11-17 17:40:38

                          #include<bits/stdc++.h> using namespace std; int main() { double x; cin>>x; printf("%.3lf",x); return 0; }

                          • -7
                            @ 2022-11-16 17:11:41

                            #include<bits/stdc++.h> using namespace std; int main(){ double e; cin>>e; printf("%.3lf",e); return 0;

                            }

                            • -8
                              @ 2022-11-17 13:37:59

                              #include<bits/stdc++.h> using namespace std; int main() { double x; cin>>x; printf("%.3lf",x); return 0; }

                              • -10
                                @ 2022-5-27 20:42:43
                                using namespace std;
                                	double a,b,c=1,d,x,y;
                                int main(){
                                	cin>>a;
                                	
                                	
                                	cout<<fixed<<setprecision(3)<<a<< endl;//保留二位小数 
                                
                                	
                                
                                
                                
                                	
                                	return 0;
                                }
                                
                                • 1

                                信息

                                ID
                                18
                                时间
                                1000ms
                                内存
                                256MiB
                                难度
                                6
                                标签
                                递交数
                                770
                                已通过
                                235
                                上传者