C++ cin cout code example
Example 1: c++ std::copy to cout
std::copy(it_start, it_end, std::ostream_iterator<T>(std::cout, separator));
Example 2: cout
cout << "Hello World!";
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!" <<;