参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int value = scanner.nextInt(); int n1 = scanner.nextInt(); int n2 = scanner.nextInt(); System.out.println(getbits(value, n1, n2)); } public static int getbits(int a, int n1, int n2) { String s = ""; for(int i = 0; i < n2 - n1; i++) { s += "1"; } for(int i = 0; i < n1; i++) { s += "0"; } int b = Integer.parseInt(s, 2); return a & b; } }
0.0分
5 人评分
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:466 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
简单的a+b (C语言代码)浏览:641 |
【排队买票】 (C语言代码)浏览:944 |
哥德巴赫曾猜测 (C语言代码)浏览:2560 |
C语言程序设计教程(第三版)课后习题9.1 (C语言代码)浏览:710 |
Cylinder (C语言描述+详细分析)浏览:3374 |
模拟计算器 (C语言代码)浏览:2366 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:405 |
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言描述之函数调用)浏览:835 |