June 2017
Intermediate to advanced
532 pages
12h 59m
English
In this section, we are going to read user input into different variables, and see how to handle errors, as well as how to do a little bit more complex tokenizing of input into useful chunks:
#include <iostream> using namespace std;
int main() { cout << "Please Enter two numbers:\n> "; int x; double y;
Read now
Unlock full access