Celcius to fahrenheitUse [code]cin.ignore();[/code] before [code]cin.get();[/code]
Input validation program@Moonraker True, I was rushing and used || by mistake. Thanks everyone for the help =D
Input validation program[code]#include <iostream> #include <sstream> #include <string> using namespace std; int main() { ...
Input validation programJust wanted to clarify [quote]All of your inputs with "+" are invalid because they are longer than ...
Input validation program@NwN [code]if (number.size() > 2) //For numbers more than +9 return 0; [/code] ...