Advertisement
MeehoweCK

Untitled

Jun 3rd, 2024
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main() {
  4.     int wiek;
  5.     std::string imie;
  6.  
  7.     std::cout << "Jak masz na imie? ";
  8.     std::cin >> imie;                   // pobiera wartość podanej zmiennej z konsoli
  9.     std::cout << "Ile masz lat? ";
  10.     std::cin >> wiek;
  11.  
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement