Algorithms_in_C++ 1.0.0
Set of algorithms implemented in C++.
|
Read integers from stdin continuously as they are entered without waiting for the \n
character.
More...
#include <iostream>
Functions | |
void | fastinput (int *number) |
int | main () |
Read integers from stdin continuously as they are entered without waiting for the \n
character.
void fastinput | ( | int * | number | ) |
Function to read the number from stdin. The function reads input until a non numeric character is entered.