Created
June 30, 2011 04:05
-
-
Save benwilson512/1055611 to your computer and use it in GitHub Desktop.
This file contains 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
int[] x = [1,2,3,4,5] | |
int[] y; | |
for(int i = 0; i < x.length; i++) { | |
y[i] = Math.exp(x[i], 2); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
and if you wanted to print that you'd have to do
System.out.println("output: " + y) and i'm not entierly sure that'd get you a nice rendering of the actual contents.