一个JAVA的小程序,帮我看看吧,在线等,
int[]store=newint[5];inti=0;while(i<2){store[++i]=store[i]+1;System.out.println(i);Sy...
int[] store = new int[5] ;
int i = 0 ;
while(i<2){
store[++i] = store[i] + 1 ;
System.out.println(i);
System.out.println(store[i]);
}
我想要输出的是 1 1 2 2 ;结果输出的是 1 1 2 1 ; 展开
int i = 0 ;
while(i<2){
store[++i] = store[i] + 1 ;
System.out.println(i);
System.out.println(store[i]);
}
我想要输出的是 1 1 2 2 ;结果输出的是 1 1 2 1 ; 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询