#include <bits/stdc++.h> using namespace std; int main(){ const double PI = 3.14; int h,r; cin >> h >> r; double v = PI * r * r * h * 0.001; int n = 20/v; cout << n << endl; return 0; }
哪里有问题?