Hang on, your problem is you want it to prevent the user supplying a negative number?
What you'll want to do for that is add another if statement after the user supplies data. You've even got the code bracketed properly. I'm assuming you haven't got to writing your own functions or anything like that.
if (userRequest == 1)
{
cout << "Hello user: Please input the radious of your circle. " << endl;
cin >> radiousC;
if(radiousC >= 0)
//Above is needed for the submenu of the circle which takes radious and later checks it.
{
//in here is the actual forumula when the radious is inputed correctly.
cout << "This is the area of your circle: " << endl << pow(radiousC, 2)*pie << endl;
}
else
{
cout << "Please input a positive number.";
}
}
Remember, an if statement is you telling your computer "If this is true, do the thing in the following brackets." Programs execute from top to bottom, as a series of instructions. Your computer doesn't know about any statements lower down until it gets there. When they hit an if statement, they check whether the condition they're given is true; if so, they execute the code inside the following brackets. If not, they skip it. You can put if statements inside other if statements - this is like saying "If Bob gets to work today, he needs to do all these things, and if he finishes them, here's this other thing he needs to do."
This sort of pattern, where you put something like an if statement inside another example of itself, is called "nesting". It applies to a lot of other statements you can make, too. Indentation is just a way of keeping track of it in C++. You could actually delete all of the indentations in your code and it would work just fine (though this isn't true for all languages). It's just there so you can read it - that way you can easily tell how many conditions need to be passed to get to some piece of code, and which pieces go together in different cases.
Speaking of readability, I would recommend working on your spelling - I know this sounds nitpicky, since the computer doesn't know correct spelling or care, but it will make it easier for yourself and others to read your code again later on, and it'll save you having to remember your own notation for your own code and the more common spelling when you read anyone else's.
EDIT: ninjas, also semicolon and i wrote the condition backwards because i'm a dumb