I'm learning C++ and it'd be nice to talk about it with others in sort of a study-group type of setting. I have a bit of familiarity with programming in other languages like python and HTML+CSS+JS but wanted to actually learn how to write my own software from scratch so i can make whatever i want.
[Zero, Null, Jas, Clair, Hyacinth, Hyphen] "genius. it creates energy clones of itself to gather resources, while the main body stays alert and safe. and if i attack, it can simply swap bodies with one of its clones."
#include <iostream>
int main()
{
std::cout << "Enter an integer: ";
int x{};
std::cin >> x;
std::cout << "Enter another integer: ";
int y{};
std::cin >> y;
std::cout << x << " + " << y << " is " << x + y << ".\n";
std::cout << x << " - " << y << " is " << x - y << ".\n";
return 0;
}
[Zero, Null, Jas, Clair, Hyacinth, Hyphen] "genius. it creates energy clones of itself to gather resources, while the main body stays alert and safe. and if i attack, it can simply swap bodies with one of its clones."