Created
November 30, 2015 19:09
-
-
Save clauswitt/9a1c954a544704bae937 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
int main(int argc, char** argv) | |
{ | |
std::string line; | |
int counter = 0; | |
while (std::getline(std::cin, line)) { | |
counter++; | |
std::cout << counter << ": " << line << "\n"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment