2013djj

#include<stdio.h>
int main(void)
{
   
double r,h,v;
   
    printf(
"Enter r,h:");
    scanf(
"%lf%lf",&r,&h);
    
   
if(r<0,h<0){
       printf(
"sorry you enter is wrony!\n");

    }
   
   
else{
        v
=3.1415926*r*r*h;
        printf(
"%.3f\n",v);
      } 
    }

   

分类:

技术点:

相关文章:

  • 2022-01-21
  • 2022-02-03
  • 2021-12-22
  • 2021-07-16
  • 2021-07-13
  • 2022-03-01
  • 2021-12-11
  • 2022-01-29
猜你喜欢
  • 2021-12-02
  • 2022-02-15
  • 2021-12-19
  • 2022-02-21
  • 2022-02-22
  • 2022-02-20
相关资源
相似解决方案