Created
March 3, 2018 17:36
-
-
Save gogeta95/8645ce616729b9eaef1c2d03393ef6ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void copyNumbers(int a1[], int a2[]) { | |
for (int i = 0; i < a1.length; i++) { | |
a2[i] = a1[i]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment