Advertisement
Guest User

Untitled

a guest
Jul 24th, 2014
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public calss ArraySort
  4. {
  5. public static void main(String[] args)
  6. {
  7. int[] input;
  8. input = number();
  9. removal(input);
  10. }
  11. public static int number()
  12. {
  13. int[] input;
  14. input = new int[10];
  15. Scanner keyboard = new Scanner(System.in);
  16. System.out.println("Enter 10 integers: ");
  17. input = keyboard.nextInt();
  18.  
  19. return input;
  20. }
  21. public static int removal(int input)
  22. {
  23.  
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement