• This project
    • Loading...
  • Sign in

안지현 / gitBranch

%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
  • gitBranch
  • echo.cpp
  • 안지현's avatar
    cpp edited · 9ae2c548
    9ae2c548
    안지현 authored 2022-03-31 22:31:51 +0900
echo.cpp 155 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
#include <iostream>
using namespace std;

int main() {
    
    char a;
    cout << "Enter anything" << endl;
    cin >> a;
    cout << a;

    return 0;
}