diff options
| author | Carlos Maiolino <[email protected]> | 2025-09-06 09:37:14 +0200 |
|---|---|---|
| committer | Carlos Maiolino <[email protected]> | 2025-09-06 09:37:14 +0200 |
| commit | 2c9056a23e1a55fd21a8e314c903d9325bffd62e (patch) | |
| tree | a73ba1c7bb60dd89c9e70769dd510e59a49a56a1 /CPP/cpp_book/test2.cpp | |
| parent | ee8a08bfa24d9a3d09273fdebe8d73ac38c545f9 (diff) | |
Move CPP code here
Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'CPP/cpp_book/test2.cpp')
| -rw-r--r-- | CPP/cpp_book/test2.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/CPP/cpp_book/test2.cpp b/CPP/cpp_book/test2.cpp new file mode 100644 index 0000000..54ae462 --- /dev/null +++ b/CPP/cpp_book/test2.cpp @@ -0,0 +1,14 @@ +#include <iostream> +#include <string> + +int main(void) { + + std::string name; + int a, b, c; + while (std::cin >> name) { + std::cin >> a >> b; + std::cout << name << a << b << std::endl; + } + + return 0; +} |
