Round the value of Given number in Java


  1. import java.util.Scanner;
  2.  
  3. public class abc {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         Scanner myScanner=new Scanner(System.in);
  8.         float num;
  9.         System.out.print("Enter the number : ");
  10.         num=myScanner.nextFloat();
  11.         float ans=Math.round(num);
  12.  
  13.         System.out.println("The digit count is : "+ans);
  14.  
  15.     }
  16. }
  17.  
  18. //Enter the number : 11.50
  19.  
  20. //The digit count is : 12.0

No comments:

Post a Comment