Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#include<iostream>
#include<string>
using namespace std;
int main() {
cout << "Welcome buddy are you ready to play this game?" << endl;
cout << "I'm so sorry i had to capture you, hehe" << endl;
cout << "But dont worry you still have a chance to survive" << endl;
cout << "First of what's your name?" << endl;
string user_name;
getline(cin, user_name);
cout << "Well, well well nice name. Hello, " << user_name << "." << endl;
}