编写一维数组{1,2,3,4,5,6,7,8,9,10},要求分别实现顺序和逆序输出2O的java程序
2个回答
展开全部
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<i.length; ++j) {
System.out.print(i[j] + " ");
}
for(int j=i.length-1; j>=0; --j) {
System.out.print(i[j] + " ");
}
}
}
public static void main(String[] args) {
int[] i = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
for(int j=0; j<i.length; ++j) {
System.out.print(i[j] + " ");
}
for(int j=i.length-1; j>=0; --j) {
System.out.print(i[j] + " ");
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
什么叫顺序和逆序输出20的JAVA程序啊,你是要排序吗?还是干什么
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询