Answers for "get data from terminal c++"

C++
4

how to print a string to console in c++

// Just some basic format 

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

int main()
{
 cout << "Print a String" << endl; 
}
Posted by: Guest on January-07-2020
9

how to grab all of user input c++

// cin with strings
#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 << "I like " << mystr << " too!\n";
  return 0;
}
Posted by: Guest on December-17-2019
4

how to get input from the console in c++

int age;
cin >> age;
Posted by: Guest on March-04-2020
2

get data from terminal c++

int i;
  cout << "Please enter an integer value: ";
  cin >> i;
Posted by: Guest on June-17-2020

Browse Popular Code Answers by Language