Heya,

I created this code ->

int max_point;

do
{
//code...
cin>>max_point;
} while(max_point < 1 || max_point > 100)

As long as the user inputs a number, this works well.
However, when a user enters a character, the appl. crashes.

What may I do to fix this?

Rgrds,
Marc