提交时间:2025-12-26 15:16:06
运行 ID: 78013
#include <bits/stdc++.h> using namespace std; int main() { double a,b; int n; cin >>a>>b>>n; double c= fixed<<setprecision(n)<<a/b; c*=10; cout << c; return 0; }