(1)下面程序是求解水仙花数。水仙花数:3位数中各位数的立方和等于该3位数,如153=13+53+33。将以下程序填写完整,在C语言程序集成开发环境中运行程序,观察运行结果。
#include<stdio.h>#include<math.h>int main(void)
int n,j,number;
double product; /product 为三位数字中各位的立方和/
printf("水仙花数:\n");
for(n=100;n<1000;①){
product=0;
number=n;
do{
product=product+pow(j,3);
number=number/10;
}while(
if(n==product)
printf("%d\n",n);
6~∞91011121314151617181920
return
阅读完程序后,请补好括号部分缺失的语句。
填空①:
填空②:
填空③:
2条回答 默认 最新
悬赏问题
- ¥15 没输出运行不了什么问题
- ¥20 输入import torch显示Intel MKL FATAL ERROR,系统驱动1%,: Cannot load mkl_intel_thread.dll.
- ¥15 点云密度大则包围盒小
- ¥15 nginx使用nfs进行服务器的数据共享
- ¥15 C#i编程中so-ir-192编码的字符集转码UTF8问题
- ¥15 51嵌入式入门按键小项目
- ¥30 海外项目,如何降低Google Map接口费用?
- ¥15 fluentmeshing
- ¥15 手机/平板的浏览器里如何实现类似荧光笔的效果
- ¥15 盘古气象大模型调用(python)