在Java中,輸入10個數(shù)和負(fù)數(shù)可以通過以下代碼實現(xiàn):
import java.util.Scanner; public class InputNumbers { public static void main(String[] args) { Scanner input = new Scanner(System.in); int[] numbers = new int[10]; int negativeCount = 0; // 循環(huán)輸入10個數(shù) for(int i = 0; i < 10; i++) { System.out.print("請輸入第" + (i+1) + "個數(shù):"); int num = input.nextInt(); numbers[i] = num; // 如果輸入的是負(fù)數(shù),則negativeCount加1 if(num < 0) { negativeCount++; } } System.out.println("您輸入的10個數(shù)為:"); // 遍歷數(shù)組輸出10個數(shù) for(int i = 0; i < 10; i++) { System.out.print(numbers[i] + " "); } System.out.println(); System.out.println("您輸入的負(fù)數(shù)個數(shù)為:" + negativeCount); } }
以上代碼首先通過Scanner類獲取用戶的輸入,然后使用數(shù)組存儲10個數(shù),并且記錄輸入的負(fù)數(shù)個數(shù)。最后輸出輸入的10個數(shù)和負(fù)數(shù)個數(shù)。
上一篇oracle 00928
下一篇css圖片邊框的來源