5 条题解

  • -2
    @ 2025-11-1 14:59:18
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
    	double x;
    	cin>>x;
    	printf("%f\n",x); 
    	printf("%.5f\n",x);
    	printf("%e\n",x);
    	printf("%g",x);
    	return 0;
    }
    
    

    信息

    ID
    453
    时间
    1000ms
    内存
    128MiB
    难度
    10
    标签
    递交数
    10
    已通过
    5
    上传者