2 条题解

  • 1

    #include<bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; cout<<fixed<<setprecision(9)<<a/b<<endl; return 0; }

    • 0
      #include<bits/stdc++.h>
      using namespace std;
      double a,b,c;
      int main(){
      	cin>>a>>b;
      	c=a/b;
      	cout<<fixed<<setprecision(9)<<c;
      	return 0;
      }
      • 1

      信息

      ID
      4461
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      (无)
      递交数
      196
      已通过
      131
      上传者