• This project
    • Loading...
  • Sign in

김대욱 / test01

%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
  • test01
  • Project1
  • 1.cpp
  • 김대욱's avatar
    Echo program · 8b714c7f
    8b714c7f
    김대욱 authored 2019-10-04 22:12:18 +0900
1.cpp 210 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
#include <iostream>
#include <string>

using namespace std;

int main() {
	while (1) {
		string a;
		cout << "출력하고 싶은 것을 입력하시오 : ";
		cin >> a;
		cout << endl <<"입력한 글자는 : "<< a << endl;
	}
}