参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.print(p(scanner.nextLine())); } public static String p(String s) { if(s.charAt(0) == '0') return s; char []s1 = s.toCharArray(); String s2 = "1"; for(int i = 1; i < 16; i++) { if (s1[i] == '0') s1[i] = '1'; else s1[i] = '0'; s2 += s1[i] - '0'; } int s3 = Integer.parseInt(s2, 2); s3++; String res = Integer.toBinaryString(s3); return res; } }
0.0分
5 人评分
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:672 |
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码)浏览:703 |
回文数字 (C语言代码)浏览:2539 |
C语言程序设计教程(第三版)课后习题10.1 (C语言代码)浏览:571 |
分糖果 (C语言代码)浏览:980 |
JAM计数法 (C语言代码)浏览:721 |
C语言训练-最大数问题 (C语言代码)浏览:668 |
C语言程序设计教程(第三版)课后习题10.7 指针(C语言代码)浏览:597 |
开心的金明 (C语言代码)浏览:563 |
文件操作浏览:756 |