0
如何解決以下問題?如何區分這個數組?
我的代碼只在水平輸入數據時才起作用。 我將如何去改變我的代碼,以便能夠像鏈接中的第二個示例一樣顯示總和?
這裏是我的代碼:
import java.util.Scanner;
public class sums_in_loop {
public static void main(String args[]) {
Scanner scanner = new Scanner(System.in);
String code = scanner.nextLine();
String list[] = code.split(" ");
for(int counter = 0; counter < list.length; counter++) {
int sum = 0;
System.out.println(sum + " ");
}
}
}
使用是System.out.print' ()'而不是'System.out.println()'。後者在你要求印刷的東西之後印刷一條新線,而前者則不是。 –