Jump to content

User:FelixFT/C++/Questions

From Wikipedia, the free encyclopedia

Code[edit]

#include <iostream>
#include <string>
using namespace std;

int main ()
{
  string mystr;
  cout << "What's your name? ";
  getline (cin, mystr);
  cout << "Hello " << mystr << ".\n";
  cout << "What is your favorite team? ";
  getline (cin, mystr);
  cout << "You like" << mystr << " !\n";
  return 0;
}