解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int ans; int n = scanner.nextInt(); System.out.print(n + "="); for(int i = 20; i >= 0; i --) { if(n >= (int) Math.pow(2, i)) { if(n - (int) Math.pow(2, i) == 0) { System.out.print((int) Math.pow(2, i)); } else { System.out.print((int) Math.pow(2, i) + "+"); } n -= (int) Math.pow(2, i); } } } }
0.0分
0 人评分
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
简单的a+b (C语言代码)浏览:878 |
幸运数 (C++代码)浏览:1309 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:592 |
DNA (C语言代码)浏览:440 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:650 |
大神老白 (C语言代码)浏览:637 |
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:576 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:727 |
陶陶摘苹果2 (C++代码)浏览:578 |