qq_此人生无解_0
2017-03-10 11:16
赋值时
输入scores【】=int""时 输出时报错 需要转换成scores【】=Interger.pareseInt("");才能运行 为什么
public class Main { public static void main(String[] args) { int[] score; score=new int[5]; score[1]=2;//直接赋值 score[3]=Integer.parseInt("123");//将数字形式的字符串解析为整数 for (int i=0; i<5; i++) { System.out.println(score[i]); } } }
Java入门第一季(IDEA工具)升级版
1165172 学习 · 17581 问题
相似问题