diff --git a/Maths/CountDigit.java b/Maths/CountDigit.java index 6610a35d..fc63a0d6 100644 --- a/Maths/CountDigit.java +++ b/Maths/CountDigit.java @@ -1,8 +1,8 @@ import java.util.*; import java.lang.*; // count the number of digits in a number -class CountDigit{ - public static void main(String args[]){ +class CountDigit { + public static void main(String args[]) { Scanner sc = new Scanner(System.in); System.out.print("Enter the number: "); int number = sc.nextInt();