TheAlgorithms/C++ 1.0.0
All the algorithms implemented in C++
|
Read integers from stdin continuously as they are entered without waiting for the \n
character.
More...
#include <iostream>
Go to the source code of this file.
Functions | |
void | fastinput (int *number) |
int | main () |
Read integers from stdin continuously as they are entered without waiting for the \n
character.
Definition in file fast_integer_input.cpp.
void fastinput | ( | int * | number | ) |
Function to read the number from stdin. The function reads input until a non numeric character is entered.
Definition at line 11 of file fast_integer_input.cpp.
int main | ( | void | ) |
Main function
Definition at line 39 of file fast_integer_input.cpp.