跟着思路来
解题思路:
注意事项:
参考代码:
import java.util.ArrayList; import java.util.Scanner; public class Text { public static void main(String[] args){ Scanner scanner=new Scanner(System.in); ArrayList<Integer> list=new ArrayList<Integer>(); int n=scanner.nextInt(); int t=n; int count=0; while (t!=0) { list.add(t%10); t/=10; count++; } int sum=0; for (int i = 0; i < count; i++) { sum+=list.get(i)*list.get(i)*list.get(i); } if (sum==n) { System.out.println("YES"); } else { System.out.println("NO"); } } }
0.0分
1 人评分
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
A+B for Input-Output Practice (V) (C++代码)浏览:485 |
Pascal三角 (C语言代码)浏览:1252 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:583 |
1113题解浏览:823 |
1014题解浏览:524 |
输出九九乘法表 (C语言代码)浏览:1172 |
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:985 |
字符删除 (C语言代码)浏览:767 |
1202题解浏览:689 |