这是为什么错啊?
#include<bits/stdc++.h> using namespace std; int main() { double a,b; cin>>a>>b; double m=a*b*b*3.14; int t=m; if(20000%t==0) cout<<20000/t; else cout<<20000/t+1; }
代码