Created
July 27, 2020 05:18
-
-
Save aiya000/dff30c53815a3858181fa7a788ac237b 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 class Test { | |
public static void main(String[] args) { | |
float[] xs = new float[32]; | |
xs[5] = 10.0f; | |
for (float x : xs) { | |
System.out.println(x); | |
} | |
} | |
} | |
// [output] | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 10.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 | |
// 0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment