/*要喝10升水才能解渴,但现在只有一个深 h 厘米,底面半径是 r 厘米的水杯,牛牛最少要喝多少杯水才能解渴。 输入杯子的高度 h ,底面半径 r 输出牛牛最少要喝多少杯水*/ #include <stdio.h> #include <math.h> int main() { int h,r,n; scanf("%d %d",&h,&r); double v =3.14*h*pow(r,2); n=3.14*h*pow(r,2); n=10000/v; if(n*v<10000) { n++; } printf("%d",n); return 0; }