私信TA
用户名:dotcpp0715696
访问量:1826
签 名:
菜菜
自我简介:
美团外卖
作者: crj 发表时间:2024-03-06 19:15:24 浏览:54 | 评论:0
解题思路:注意事项:参考代码:
#include <stdio.h>
int main()
{
int n,c=0;
scanf("%d", &n);
int t = n;
while (n != 0)
int d=n% 10;
c += d*d*d;
n /= 10;
}
printf("%d", c==t?1:0);
return 0;
0.0分
1 人评分
看不懂代码解释一下代码? 或者生成一段代码?试试AI编程助手吧