Update math/power_of_two.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>
This commit is contained in:
Neha Hasija
2020-10-19 01:13:18 +05:30
committed by GitHub
parent 31012cb42b
commit 1de5468200

View File

@@ -47,7 +47,7 @@ void power_of_two(int n){
* @returns 0 on exit
*/
int main() {
int n;
int n = 0;
///n stores the input from the user
std::cout<<"enter a number "<<std::endl;
std::cin>>n;