cin and cout in c++ code example
Example 1: how to grab all of user input c++
#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 2: cin in c++
cin >> varName;
Example 3: C++ cin cout
int age;
cout << "How old are you ?" << endl;
cin >> age;
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;
}
Example 5: how to cout in c++
std::cout << "Hello World!" << std::endl;
std::cout << "Hello World!" <<;
Example 6: get data from terminal c++
int i;
cout << "Please enter an integer value: ";
cin >> i;