| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/shwetaodel/Java-Programs/main/MathPrgm.java | [Back] [Original] |
package questions;
public class MathPrgm {
public static void main(String[] args) {
System.out.println(Math.max(5,9));
System.out.println(Math.min(5,9));
System.out.println(Math.sqrt(121));
System.out.println(Math.random());
System.out.println(Math.random() * 101); //this will give random number in between 0 to 100
}
}
| Web Proxy Viewer | New URL | Original Page |