how to read input in c++ code example
Example 1: user input c++
#include <iostream>
int main(){
std::string firstname;
std::cout << "What's your first name\n";
std::cin >> firstname;
std:: cout << "Hello " << firstname
}
Example 2: how to get input from the console in c++
int age;
cin >> age;
Example 3: how to get input in cpp
#include <iostream>
using namespace std;
int main ()
{
int i;
cout << "Please enter an integer value: ";
cin >> i;
cout << "The value you entered is " << i;
return 0;
}
Example 4: c++ cin operator
#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;
}