java怎样输出数组中的前n个元素?

n 未知,例如第一次输出1个,第二次输出前2个。。。。。
2025-01-26 14:16:00
推荐回答(5个)
回答1:

import java.util.*;

public class Test {
public static void main(String[]args){
int[] arry = new int[]{1,2,3,4,5,6,7,8,9,0,2,4,3,6,5,9,6,5};
//这个数组是您自己定义的,有多少元素自己写就好
Scanner input =new Scanner(System.in);
System.out.println("请输入你想要输出,数组前几个元素:");
int a=input.nextInt();
if(a > arry.length){
System.out.println("个数大于数组长度");
}else{
for(int i = 0; i < a; i++){

System.out.print(arry[i]);
System.out.print(" ");
}

}
}
}

回答2:

输入数据前n个只需要加个for循环
for(int i=0;i    System.out.println(数组[i]);
}

回答3:

public class Gamma {
public static void main(String[] args){
int[] arr = new int[]{1,2,3,4,5,6,7,8,9,0};
new Gamma().out(10, arr);
}

public void out(int n, int[] a){
if(n > a.length){
System.out.println("个数大于数组长度");
}else{
for(int i = 0; i < n; i++){
for(int j = 0; j <= i; j++){
System.out.print(a[j]);
System.out.print(" ");
}
System.out.println();
}
}
}
}

回答4:

两个for循环啊!
for(int 0;iint j=i+1;
for(int x=0;xSystem.out.println(a[x]);
}

回答5:

try{
for (int i = 0; i < n; i++){
System.out.println(a[i]);
}
}catch(Exception e ){}