grodek118

Java_Math_Class

Nov 3rd, 2021
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. package com.company;
  2.  
  3.  
  4. public class Main {
  5.  
  6. public static void main(String[] args) {
  7.  
  8. // Math Class
  9. System.out.println(Math.abs(-10));
  10. System.out.println(Math.max(3.6, 10.11));
  11. System.out.println(Math.min(3.6, 10.11));
  12. System.out.println((int) Math.pow(5.0, 2.0));
  13. System.out.println(Math.sqrt(25));
  14. System.out.println(Math.PI);
  15.  
  16. }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment