1
0
LearningCPP/main.cpp

11 lines
213 B
C++
Raw Normal View History

2022-08-12 14:59:08 +01:00
#include <iostream>
int main()
{
int x{ 0 };
std::cout << "Number Repeater:\nEnter the Number: ";
std::cin >> x;
std::cout << std::endl << "You Entered: " << x << "!\n";
return 0;
}