Files
learncpp/ch_1/your_first_program/main.cpp

13 lines
191 B
C++
Raw Normal View History

2026-04-07 09:10:25 -05:00
#include <iostream>
int main() {
std::cout << "Enter an integer: ";
int num{ };
std::cin >> num;
std::cout << "Double your number is " << num * 2 << "\n";
return 0;
}