From da29549d6745704f3ba33bbb0d065e73c473af42 Mon Sep 17 00:00:00 2001 From: Utsav1999 Date: Sun, 26 Jul 2020 21:32:32 +0530 Subject: [PATCH] updated with Maths package --- Maths/CountDigit.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();