查找输入数字的立方,创建单独的显示函数

#include <stdio.h>  

void showCube(double x);  

int main(void){  
     double val;  
     printf("Enter a floating-point value: ");  
     scanf("%lf", &val);  
     showCube(val);  

    return 0;  
}

void showCube(double x) {  
    printf("The cube of %e is %e./n", x, x*x*x );  
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266559.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论