解题思路: 字符串与二进制
注意事项: 注意负数
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in=new Scanner(System.in); while(in.hasNext()) { int n=in.nextInt(); if(n>=0) System.out.println(n+"-->"+Integer.toBinaryString(n)); else { int num =Integer.parseInt(Integer.toString(n).substring(1)); System.out.println(n+"-->-"+Integer.toBinaryString(num)); //注意负数的处理 } } in.close(); } }
0.0分
0 人评分
模拟计算器 (C语言代码)浏览:966 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:729 |
简单编码 (C++代码)浏览:730 |
C二级辅导-公约公倍 (C语言代码)浏览:1550 |
C语言训练-计算t=1+1/2+1/3+...+1/n (C语言代码)浏览:910 |
【金明的预算方案】 (C++代码)浏览:873 |
2004年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:1368 |
1113题解浏览:823 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |
A+B for Input-Output Practice (C语言代码)浏览:505 |