编写一维数组{1,2,3,4,5,6,7,8,9,10},要求分别实现顺序和逆序输出2O的java程序

2024-12-01 14:32:25
推荐回答(2个)
回答1:

public class Test {

public static void main(String[] args) {
int[] i = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
for(int j=0; j System.out.print(i[j] + " ");
}

for(int j=i.length-1; j>=0; --j) {
System.out.print(i[j] + " ");
}
}
}

回答2:

什么叫顺序和逆序输出20的JAVA程序啊,你是要排序吗?还是干什么