Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- int main() {
- int wiek;
- std::string imie;
- std::cout << "Jak masz na imie? ";
- std::cin >> imie; // pobiera wartość podanej zmiennej z konsoli
- std::cout << "Ile masz lat? ";
- std::cin >> wiek;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement