Quote (SelfTaught @ 22 Oct 2013 00:42)
how does that help me ??
I'm trying to figure out that lets say
cout << "Please enter that sales tax" << endl;
cin >> salesTax;
now what if someone enters in sales tax = 8.25% so if they do that then takes 8.25/100 = .0825
but what if they do this
cout << "Please enter that sales tax" << endl;
cin >> salesTax;
they enter .0825 so then i need to do nothing..
is there a way to tell which the person enters then goes forward?