• This project
    • Loading...
  • Sign in

홍용민 / os_git_branch

%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
  • os_git_branch
  • echo.cpp
  • 홍용민's avatar
    echo program · 59de9f13
    59de9f13 Browse Files
    홍용민 authored 2021-04-01 19:27:34 +0900
echo.cpp 169 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
#include<iostream>
using namespace std;

int main() {
	char c;

	cout << "Enter a character -> ";
	cin >> c;

	cout << "you enter \"" << c << "\"" << endl;

	return 0;
}