首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java相关 >

异常修正

2013-07-01 
错误修正import javax.swing.*public class test4{public static void main(String args[]){int a[] ne

错误修正
import javax.swing.*;

public class test4{
public static void main(String args[]){
int a[] = new int [10];

for (int counter =0; counter<=a.length;counter++)
a[counter] = 2*counter;

String output ="INDEX\tVALUE\n";


for (int counter=0; counter<=a.length; counter++)
output += counter+"\t"+a[counter]+"\n";

JTextArea outputArea = new JTextArea();
outputArea.setText(output);

JOptionPane.showMessageDialog( null, outputArea,"shuzu",JOptionPane.INFORMATION_MESSAGE);
System.exit( 0 );
}
}

  

热点排行