参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner cin=new Scanner(System.in); int n=cin.nextInt(); int flag=0; int a=n/100,b=n/10-a*10,c=n%10; if(Math.pow(a, 3)+Math.pow(b, 3)+Math.pow(c, 3)==n){ flag=1; } System.out.println(flag); } }
0.0分
0 人评分
整人!!浏览:908 |
点我有惊喜!你懂得!浏览:1166 |
【亲和数】 (C语言代码)浏览:588 |
不容易系列 (C语言代码)浏览:702 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:552 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:676 |
DNA (C语言代码)浏览:798 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:585 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:489 |
汽水瓶 (C语言代码)浏览:579 |