From 1b1eea7c90e5b0bc7d6554283c352238fc79e104 Mon Sep 17 00:00:00 2001 From: ANSHUMAAN <75872316+amino19@users.noreply.github.com> Date: Thu, 3 Jun 2021 20:58:33 +0530 Subject: [PATCH] Update finding_number_of_Digits_in_a_Number.cpp --- math/finding_number_of_Digits_in_a_Number.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/math/finding_number_of_Digits_in_a_Number.cpp b/math/finding_number_of_Digits_in_a_Number.cpp index 35fa104f8..d4bb95087 100644 --- a/math/finding_number_of_Digits_in_a_Number.cpp +++ b/math/finding_number_of_Digits_in_a_Number.cpp @@ -1,5 +1,5 @@ /** - * @author [ANSHUMAAN](https://github.com/amino19) + * @author [aminos 🇮🇳](https://github.com/amino19) * @file * * @brief [Program to count digits @@ -24,9 +24,6 @@ int main() { int n = 0; int count = 0; - /* 'cout' to ask input from user.. - * 'cin' to taking integer as input.. - */ std::cout << "Enter an integer: "; std::cin >> n;