print statement in c++ code example

Example 1: how to print in c++

#include <iostream>

int main() {
  std::cout << "Hello, World!"; // prints 'Hello, World!' to the output.
  return 0;
}

Example 2: how to print in c++

#include <iostream>
using namespace std;

int main(){
  cout<<"Hello World!"<< endl; // prints "Hello World"
  return 0;
}

Example 3: 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;
}

Example 4: PRINT IN C ++

#include <iostream>
std::cout << someString << "\n";

Example 5: how to print in c++

#include <iostream>

int main() {
  std::cout << "Hello World!"; //cout keyword prints "Hello World!"
  return 0;
}

Example 6: c++ print

cout << "hello world"

Tags:

Java Example