Advertisement
VEGASo

Lab #4 Ex. 3

Oct 25th, 2022
524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <windows.h>
  4. #include <string>
  5.  
  6. using namespace std;  
  7.  
  8.  
  9. int main()
  10. {
  11.     SetConsoleCP(1251);
  12.     setlocale(LC_ALL, "RU");
  13.     string name, motto;
  14.     int age;
  15.    
  16.    
  17.     cout << "Введите девиз: ";
  18.     getline(cin, motto);
  19.  
  20.     cout << "Введите полное имя: ";
  21.     getline(cin >> ws, name);
  22.  
  23.     cout << "Введите возраст: ";
  24.     cin >> age;
  25.  
  26.  
  27.     cout << "\nИмя: " << name << "\nВозраст: " << age << "\nДевиз: " << motto << endl;
  28.  
  29.  
  30.     return 0;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement