User profile: Madguy

User info
User name:Madguy
History
Joined:
Number of posts:21
Latest posts:

Celcius to fahrenheit
Use [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 program
Just 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] ...