Unnamed
public text v1 · immutable//fält och for
public class Repetion {
public static void main(String[] args) {
int[] fält = new int[5];
System.out.print("Mata in 5 fält-värden: ");
for (int n = 0; n < 6; n++){
fält[n] = Keyboard.readInt();
}
}
}