gpt4 book ai didi

java - 使用 System.out.write 打印到控制台

转载 作者:行者123 更新时间:2023-12-04 06:41:54 24 4
gpt4 key购买 nike

是作业题。

问题:

"Use an array of integers with size 10 and print the content of the array using write( ) method.

Note: Please do not use System.out.println( ) method."



这是我迄今为止尝试过的方法,但它不起作用。
int i = 0;
while (i != array.length) {
byte[] temp = new byte[4];
temp[0] = (byte) (array[i] & 256);
array[i] = array[i] >> 8;
temp[1] = (byte) (array[i] & 256);
array[i] = array[i] >> 8;
temp[2] = (byte) (array[i] & 256);
array[i] = array[i] >> 8;
temp[3] = (byte) (array[i] & 256);
System.out.write(temp, 0, 4);
i++;
}

我找不到办法做到这一点,请帮助我。

提前致谢。 :)

最佳答案

void printInt(int x) {
String s = String.valueOf(x);
for(int i = 0; i < s.length(); i++) {
System.out.write(s.charAt(i));
}
System.out.write('\n');
}

编辑:更漂亮:
void printInt(int x) {
String s = String.valueOf(x);
System.out.write(s.getBytes());
System.out.write('\n')
}

关于java - 使用 System.out.write 打印到控制台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4144895/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com