/* 數字倒序輸出 題目描述 輸入10個數字,然後逆序輸出。 輸入 十個整數 輸出 逆序輸出,空格分開 樣例輸入 1 2 3 4 5 6 7 8 9 0 樣例輸出 0 9 8 7 6 5 4 3 2

Han19980124發表於2020-09-26

數字倒序輸出

題目描述
輸入10個數字,然後逆序輸出。
輸入
十個整數
輸出
逆序輸出,空格分開
樣例輸入
1 2 3 4 5 6 7 8 9 0
樣例輸出
0 9 8 7 6 5 4 3 2 1
解題思路:
這道題宣告一個陣列,儲存到陣列中然後倒敘輸出即可

import java.math.BigInteger;

public class Main_boke {
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int arr[]=new int[10];
		for(int i=0;i<arr.length;i++){
			arr[i]=sc.nextInt();
		}
		for(int j=arr.length-1;j>=0;j--){
			System.out.print(arr[j]+" ");
		}		
	}
}

相關文章