examples from C++ Primer but with own mind/consciousness

This commit is contained in:
Mert Gör
2024-06-23 22:32:48 +03:00
parent 81891b741f
commit 441c2ab363
3 changed files with 114 additions and 0 deletions

12
src/calculate.cpp Normal file
View File

@ -0,0 +1,12 @@
#include <iostream>
int main()
{
std::cout << "enter two numbers:" << std::endl;
int value1 = 0, value2 = 0;
std::cin >> value1 >> value2;
std::cout << "The sum of " << value1 << " and " << value2
<< " is " << value1 + value2 << std::endl;
return 0;
}