c++ get input from console code example

Example 1: c++ read console input

// Include the library for console in-/outputs
#include <iostream>
// Include the libary for strings
#include <string>

// Main function
int main()
{
  // Initialize variable
  std::string value;
  // Read from console
  std::getline(std::cin, value);
}

Example 2: how to get input from the console in c++

int age;
cin >> age;

Example 3: c++ cin operator

//Akbarali saqlagan C++ bo'yicha cin operatoriga ta'rif
#include <iostream>
using namespace std;
int main (){
  int a;
  cout << "Kattaroq sonni yozing: ";
  cin >> a;
  int b;
  cout << "Tepadaginga nisbatan kichik bo`lgan son(qiymatni) yozing: ";
  cin >> b;
  cout << "Birinchi kiritgan soningizdan ikkinchi kiitgan soningiz " << a-b << " marta katta ekanligi ma'lum bo'ldi.\n";
  return 0;
}

Example 4: get data from terminal c++

int i;
  cout << "Please enter an integer value: ";
  cin >> i;

Example 5: c++ output

#include <iostream>

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

Tags:

Cpp Example