java编程求助问题描述  编写一个程序,读入一组整数(不超过20个),当用户输入0时,表示输入结束。然后程序将从这组整

1个回答

  • public class ui {

    public static void main(String[] args) {

    Scanner sc = new Scanner(System.in);

    System.out.println("读入一组整数");

    String strnum = sc.nextLine();

    int num[] = new int[strnum.length()-1];

    String[] split = strnum.split(" ");

    for( int i=0;i