我应该根据它们的键值打印一个数组值表。但是我收到'.class' expected. 但我不知道代码有什么问题。请帮忙!
class createTable {
public static void main (String args []){
int array[] = {2,13,15,67,87,34,66,23,11,93};
printTable (array[]);
}
static void printTable (int[] array){
System.out.println ("Key\tValue");
for (int key = 0; key < array.length; key++){
System.out.println (key + "\t" + array [key]);
}
}
}
白衣非少年
白衣染霜花
蓝山帝景
相关分类