Hi!!
I'm just getting started with C++, and i'm using Dev ++ as a compiler.
And now i got a few problems:S For the first, this code won't compile, any1 knows why ??? And also, why does this program just shutdown after the if?? i know this because it worked a bit before it was unable to compile XD
Ok, here's the code 
Code:
#include <iostream>
#include <string>
using namespace std;
int main(){;
unsigned char i (0);
string s;
cout<<"What is your age?\n";
cin>>i;
cin.get;
cout << "Is this what your age is?\n" << i << "\n";
cin>>s;
cin.get();
if (s=="Yes"){;
i=i*2+3;
cout << "Well now you've aged in a second!\n" << "Your age is now: " << i << "\n";
if (i==13){;
cout << "You're 13! This means bad luck for you!";
};
else if (s=="No"){;
cout << "Then this program isn't working XD!\n";
};
cin.get();
};