Showing
1 changed file
with
20 additions
and
0 deletions
echo.cpp
0 → 100644
| 1 | +#include <iostream> | ||
| 2 | +#include <string> | ||
| 3 | +#include <vector> | ||
| 4 | + | ||
| 5 | +using namespace std; | ||
| 6 | + | ||
| 7 | +int main() { | ||
| 8 | + ios_base::sync_with_stdio(false); | ||
| 9 | + cin.tie(NULL); | ||
| 10 | + | ||
| 11 | + // º¯¼ö ¼±¾ð | ||
| 12 | + string str; | ||
| 13 | + | ||
| 14 | + // echo ¼öÇà | ||
| 15 | + cout << "input : "; | ||
| 16 | + cin >> str; | ||
| 17 | + cout << str; | ||
| 18 | + | ||
| 19 | + return 0; | ||
| 20 | +} | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or login to post a comment