作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将两个二进制数相加,然后在二进制系统中得到它们的和。我得到了它们的十进制总和,现在我想把它变成二进制。但是有一个问题,当我取它们的和(十进制)并除以 2 并找到余数(在 while 循环中)时,我需要将余数放入数组中以便打印它的反向。但是,数组部分有错误。你对我的代码有什么建议吗?提前致谢。
这是我的代码:
import java.util.Scanner;
public class ex1 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int n = scan.nextInt();
int m = scan.nextInt();
int k = dec1(n)+dec2(m);
int i=0,c;
int[] arr= {};
while(k>0) {
c = k % 2;
k = k / 2;
arr[i++]=c; //The problem is here. It shows some //error
}
while (i >= 0) {
System.out.print(arr[i--]);
}
}
public static int dec1(int n) {
int a,i=0;
int dec1 = 0;
while(n>0) {
a=n%10;
n=n/10;
dec1= dec1 + (int) (a * Math.pow(2, i));
i++;
}
return dec1;
}
public static int dec2(int m) {
int b,j=0;
int dec2 = 0;
while(m>0) {
b=m%10;
m=m/10;
dec2= dec2 + (int) (b * Math.pow(2, j));
j++;
}
return dec2;
}
}
最佳答案
这里:
int[] arr= {};
创建一个空数组。数组不会在 Java 中动态增长。因此,任何试图访问 arr
的任何索引的尝试将导致 ArrayIndexOutOfBounds 异常。因为空数组根本没有“范围内的索引”。
所以:
int[] arr = new int[targetCountProvidedByUser];
“更多”的真正答案是使用 List<Integer> numbersFromUsers = new ArrayList<>();
因此 Collection 类允许动态添加/删除元素。但对于 Java 新手,您最好先学习如何处理数组。
关于java - 如何在java中的while循环中将数字放入数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56546493/
我是一名优秀的程序员,十分优秀!