document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class FindFloorValueExample {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. System.out.println(Math.floor(70));
  6.  
  7. System.out.println(Math.floor(30.1));
  8.  
  9. System.out.println(Math.floor(15.5));
  10.  
  11. System.out.println(Math.floor(-40));
  12.  
  13. System.out.println(Math.floor(-42.4));
  14.  
  15. System.out.println(Math.floor(0));
  16.  
  17. }
  18. }
');