我不知道用户会输入多少个数字,并且我需要程序在到达行尾时停止在数组中插入数字,因为在新行中用户会输入一个与此无关的数字。
例如:
用户可以输入:
1 5 7 8 9 5
4
或:
5 4 8 9 4 2 1 3 2 4
7
我需要的数组是,示例1:[1,5,7,8,9,5]
如果您的需求允许您询问用户,您可以按照以下方式进行:
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
int[] num;
Scanner scanner=new Scanner(System.in);
System.out.print("How many integers you want to enter: ");
int n = 0;
if(scanner.hasNextInt()) {
n=scanner.nextInt();
}
num=new int[n];
for(int i=0;i<n;i++) {
System.out.printf("Enter integer %d: ",i+1);
if(scanner.hasNextInt()) {
num[i]=scanner.nextInt();
}
}
System.out.println(Arrays.toString(num));
}
}
运行示例:
How many integers you want to enter: 3
Enter integer 1: 10
Enter integer 2: 15
Enter integer 3: 20
[10, 15, 20]
您也可以按照以下方式进行:
import java.util.Arrays;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
int[] num;
Scanner scanner = new Scanner(System.in);
System.out.print("How many integers you want to enter: ");
int n = 0;
if (scanner.hasNextInt()) {
n = scanner.nextInt();
scanner.nextLine();
}
num = new int[n];
System.out.print("Enter the integers separated by a space: ");
String[] strNums = null;
if (scanner.hasNextLine()) {
strNums = scanner.nextLine().split(" ");
}
if (strNums != null) {
for (int i = 0; i < n; i++) {
try {
num[i] = Integer.parseInt(strNums[i]);
} catch (Exception e) {
System.out.println("Invalid input");
break;
}
}
System.out.println(Arrays.toString(num));
}
}
}
运行示例:
How many integers you want to enter: 3
Enter the integers separated by a space: 10 15 20
[10, 15, 20]
但是,如果希望整数的个数不受限制,则应使用列表
而不是数组(因为数组的大小在初始化时是固定的),如下所示:
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
List <Integer> intList=new ArrayList<Integer>();
Scanner scanner = new Scanner(System.in);
System.out.print("Enter the integers separated by a space: ");
String[] strNums = null;
if (scanner.hasNextLine()) {
strNums = scanner.nextLine().split(" ");
}
if (strNums != null) {
for (String strNum: strNums) {
try {
intList.add(Integer.parseInt(strNum.trim()));
} catch (Exception e) {
System.out.println("Invalid input");
break;
}
}
System.out.println(intList);
//You can even get an array out of the list as follows:
Integer[] nums = intList.toArray(new Integer[0]);
System.out.println(Arrays.toString(nums));
}
}
}
运行示例:
Enter the integers separated by a space: 10 20 30 40
[10, 20, 30, 40]
[10, 20, 30, 40]
祝你一切顺利!
我是C语言的初学者。如果我的问题是蹩脚的,请不要介意。在我写的这个程序中,当我第一次使用“for”循环时,我希望一个数组中只存储3个值,但它存储4个值,在接下来的“for”循环中,如预期的那样显示3个值。我的问题是为什么在第一个for循环中需要4个值而不是3个?
问题内容: 我正在尝试进行多项选择调查,以允许用户从选项1-x中进行选择。如何做到这一点,以便用户输入除数字以外的任何字符,返回“那是无效答案”之类的内容 问题答案: 您的代码将变为: 它的工作方式是使循环无限循环,直到仅放入数字为止。因此,如果我输入“ 1”,它将破坏循环。但是如果我放“ Fooey!” 该语句将捕获“将引发的错误” ,并且该循环将循环,因为它没有被破坏。
我正在尝试创建一个Azure Function(. NET核心)以从存储帐户检索SaS,并且难以理解为什么我无法访问存储。 函数签名: 索引方法“GetBlobSaS”Microsoft时出错。蔚蓝色的网络作业。主机:无法将参数“storage”绑定到类型StorageAccount。确保绑定支持参数类型。如果您使用的是绑定扩展(例如Azure Storage、ServiceBus、Timers等
问题内容: 我想将ID的 数组参数 输入到 Firebird存储过程 。 :INPUT_LIST_ID = [1、2、12、45、75、45] 我需要执行以下SQL命令: 是否有可能?谢谢! 问题答案: 您还可以使用如下所示的内容: 您将必须创建一个名为“ GetIntegerList”的新Firebird过程,该过程类似于以下内容: 注意,这是在Firebird 2.5.2中完成的。
我正在做赫尔辛基大学的java MOOC,有一个练习要求我创建一个程序,让你输入你想要的数字,但是当你输入一个“0”时,它打印所有先前输入的数字的总和,并结束程序。当输入“0”时,我不知道如何“存储”输入数字以计算它们的总和。程序运行,但输入“0”将打印“0”。这就是我的代码的外观: 如何计算所有输入数字的总和?
我有密码 但是当我在文本字段中输入字符时,它们会保持打印状态,直到我切换到另一个文本字段。我需要完全禁止字符输入,我的意思是当字符输入时,我需要删除字符,或者如果可能的话,以某种方式使字符甚至不出现以供听众处理,当然也不出现在文本字段中。我的意思是只有数字字符必须出现。