题解分享
题解分享简介
a/b - 题解
```
#include <bits/stdc++.h>
using namespace std;
int main()
{
double a,b,c;
cin >> a >> b;
c = a / b;
//cout << %lf0.9(c) << endl;
//调用 fixed函数 和 setprecision()函数
cout << fixed << setprecision(9) << c << endl;
return 0;
}
```
查看全文
0
0
0
0



