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;
    }
    

    完美结束🎉️ 🎉️ 🎉️

    • 1
      @ 2023-6-2 13:38:38

      #include<bits/stdc++.h>

      using namespace std;

      int main() { double a,b; cin>>a>>b; printf("%.9lf",1.0*a/b); return 0;

      }

      • 0
        @ 2022-11-17 13:58:42

        #include<bits/stdc++.h>

        using namespace std;

        int main() { double a,b; cin>>a>>b; printf("%.9lf",1.0*a/b); return 0;

        }

        • -1
          @ 2023-4-12 13:54:24

          #include<iostream>

          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; }

          • -1
            @ 2023-4-11 18:05:24

            客户金额

            • 1

            信息

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