Update finding_number_of_Digits_in_a_Number.cpp

This commit is contained in:
ANSHUMAAN 2021-06-03 20:58:33 +05:30 committed by GitHub
parent ed9caec5c1
commit 1b1eea7c90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;