All pastes #2101673 Raw Edit

Unnamed

public text v1 · immutable
#2101673 ·published 2012-01-09 20:03 UTC
rendered paste body
//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();
		}
		
	}

}