JAVA小實例

1.能夠從控制檯連續輸入數字,當輸入的數字爲0時不能夠再輸入。java //思路 : 不知道輸入次數 只要結果不爲零就能夠一直輸入 Scanner sc = new Scanner(System.in); //控制檯 System.out.println("請輸入數字"); while(true){ int sum = sc.nextInt(); if (sum == 0){ Sys
相關文章
相關標籤/搜索