5 条题解

  • 7
    @ 2022-12-2 14:28:18

    本题:

    方案一:先把a÷b的值存储起来,然后输出;

    方案二:直接输出a÷b的值

    方案一正确代码:

    #include<bits/stdc++.h>
    
    using namespace std;
    
    int main(){
    /*int n,m;
    cin>>n>>m;
    cout<<n<<m;
    double a,b;
    //防抄袭
    */
    	cin>>n>>m;
    	double ans=n/m;//定义一个浮点数(小数)变量用来存储被除数(小数)÷除数(小数)的值
    	printf("%.9lf",ans);//输出浮点数(小数)的值
    	return 0;
    }
    

    方案二正确代码:

    #include<bits/stdc++.h>
    
    using namespace std;
    
    int main(){
    /*int n,m;
    cin>>n>>m;
    cout<<n<<m;
    double a,b;
    //防抄袭
    */
    	cin>>n>>m;
    	printf("%.9lf",n/m);//输出被除数(小数)÷除数(小数)的得数(商)
    	return 0;
    }
    

    完美结束🎉️ 🎉️ 🎉️

    信息

    ID
    568
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    递交数
    503
    已通过
    163
    上传者