• This project
    • Loading...
  • Sign in

박나리 / opensource

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • opensource
  • echo.cpp
  • Nari Park's avatar
    echo program · db2c7230
    db2c7230
    Nari Park authored 2022-03-31 22:15:29 +0900
echo.cpp 270 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#include <iostream>
#include <string>
using namespace std;

int main() {
	string a;
	while (1) {
		cout << "단어를 입력하시오 : ";
		cin >> a;
		cout << endl;
		cout << "입력한 문자는 " << a << " 입니다" << endl;
		cout << "-------------------------" << endl;

		
	}

}