提交时间:2023-12-04 19:01:52

运行 ID: 33001

#include <bits/stdc++.h> using namespace std; int main() { double x, y; cin >> x >> y; cout << setprecision(2) << x / y; return 0; }