Guest User

Untitled

a guest
Apr 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. class ArrayManip {
  2. public static void main(String[] args) {
  3. int[] firstArray = new int[10];
  4. createSingleArray(array);
  5. printArray(array);
  6. }
  7. public static void createSingleArray(int array[]) {
  8. for (int i=0; i<array.length; i++) {
  9. array[i] = i+1;
  10. }
  11. }
  12. public static void printArray(int array[]) {
  13. for (int i=0; i<array.length; i++) {
  14. System.out.println(array[i]);
  15. }
  16. }
  17. }
Add Comment
Please, Sign In to add comment