• This project
    • Loading...
  • Sign in

유승근 / OSS_assignment3

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • OSS_assignment3
  • hello.cpp
  • Yuseunggeun's avatar
    add hello.cpp · 9c94b7d8
    9c94b7d8
    Yuseunggeun authored 2020-04-03 20:41:08 +0900
hello.cpp 138 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
#include<iostream>
#include<string>
int main(){
	string data;
	cout << "input : ";
	cin >> data;
	cout << "print : "<<data;


	return 0;
}