java 输入数组并以反向顺序打印

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 输入数组并以反向顺序打印相关的知识,希望对你有一定的参考价值。

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package BASICJAVA;

import java.util.Scanner;

/**
 *
 * @author ABIR
 */
public class Array_Reverse_Order_Print {
    public static void main(String[]args){
        Scanner abir =new Scanner(System.in);
        int[] number=new int[5];
        for (int i = 0; i < number.length; i++) {
            System.out.println("Enter your "+(i+1)+" number");
            number[i]=abir.nextInt();
        }
        System.out.println("Printing in reverse");
        for (int i = number.length-1; i >=0 ; i--) {
            System.out.println(number[i]);
        }
    }
}

以上是关于java 输入数组并以反向顺序打印的主要内容,如果未能解决你的问题,请参考以下文章

反向字符串打印方法

Java学习 之数字排顺序

读取Java数组中的10位数字并反向打印出来

我在运行代码时遇到错误,该代码接受用户的温度并以相反的顺序打印,为啥会这样?

以数组大小 20 打印随机数并以索引号打印数字

类的数据成员为数组,怎么样根据键盘输入的数据顺序建立对象?