Finish Ch. 1

This commit is contained in:
2026-04-07 09:10:25 -05:00
parent 703fa75e7e
commit 304eddc48d
3 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
#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;
}