Hi & welcome to the forum ! :+D
No one has pointed out to you what initialisation is.
Initialisation means assigning a value to a variable:
int a = 0;
Ideally this should happen when the variable is declared. Use of un-initialised variables is one of the biggest source of errors. So this is a golden rule, to help you out :+D
Make sure you initialise your variables with something. Happy days!
I think it will be handy for you to realise the difference between various types:
int
char
double
bool
, and how they are stored, plus what one can do (and not do) with them.
While I am at it, and seen as it is day 2 for you, it is a great time to get you out of the habit of having
using namespace std;
Have a go at Googling why that is, or look at some of my recent posts. Just put
std::
like
giblit and
long double main have done.
Just as important, please use code tags from now on: select the code, then press the <> button on the format menu.
Finally, at the top right of this page there is a great tutorial, untold reference material, and articles.
Cheers