我是靠谱客的博主 光亮大地,最近开发中收集的这篇文章主要介绍输入n个整数(数组,输入的数必须全部为数组)(String 转化为int数组),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

输入n个数为一个数组, 不能提前输入数组长度

1.

当字符串转为单个字符,再转为单个字符串,在转为int型

public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
String str=sc.nextLine();
int[] num=new int[str.length()];
for (int i = 0; i <num.length ; i++) {
//
当字符串转为单个字符,再转为单个字符串,在转为int型
//
Integer.parseInt和Integer.valueOf 意思相同
num[i]=Integer.parseInt(String.valueOf(str.charAt(i)));
num[i]=Integer.valueOf(String.valueOf(str.charAt(i)));
}

 

2.

public static void main(String[] args) {
Scanner sc=new Scanner(System.in);
String str=sc.nextLine();
int[] num=new int[str.length()];
for (int i = 0; i <num.length ; i++) {
num[i]=Integer.valueOf(str.charAt(i))-'0';
}
}

3.用split


Scanner sc=new Scanner(System.in);
String str=sc.nextLine();
String[] str1=str.split(" ");
int[] num=new int[str1.length];
for (int i = 0; i <num.length ; i++) {
num[i]=Integer.valueOf(str1[i]);
}

 

最后

以上就是光亮大地为你收集整理的输入n个整数(数组,输入的数必须全部为数组)(String 转化为int数组)的全部内容,希望文章能够帮你解决输入n个整数(数组,输入的数必须全部为数组)(String 转化为int数组)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部