Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.28 KB | None | 0 0
  1. package com.example;
  2.  
  3. public class HelloWorld {
  4.  
  5.     public static void main(String[] arguments) {
  6.         double randomNumber = Math.random() * 10;
  7.         double[] array = {(randomNumber)};
  8.         double arrayLenght = array.length;
  9.         System.out.println(array[0]);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement