Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. public class Exercise11f {
  2. public void input( int[] array ) {
  3. for( int i = 0; i < array.length; i++ ) {
  4. array[ i ] = Integer.parseInt( JOptionPane.showInputDialog( "Ange tal " +
  5. ( i + 1 ) ) );
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement