Advertisement
IanO-B

Untitled

Feb 18th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public class Main {
  2.  
  3. public static void main(String[] args) {
  4. int[] values;
  5. values = new int[10];
  6.  
  7. for (int i = 0; i < values.length; i++) {
  8. values [i] = -113;
  9. System.out.println(values[i]);
  10. }
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement