• This project
    • Loading...
  • Sign in

황지민 / gitbranch-assignment2

%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
  • gitbranch-assignment2
  • hello.c
  • jimin's avatar
    If you enter 'exit', the program will exit · f8c08cae
    f8c08cae Browse Files
    jimin authored 2020-04-03 19:46:35 +0900
hello.c 212 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
 #include <iostream>
 #include <string>
 using namespace std;
 
 
 int main(){
     whlie(1) {
         string a;
         cin >> a;
         cout << a;
         if (a == exit)
             break;//exit
     }
 }