Commit a4f3bf16 by Patryk Czarnik

Zajęcia 24.10

parent 82c1c3d8
#include <iostream>
int main() {
std::cout << "Hello world\n";
return 0;
}
#include <iostream>
int main() {
std::string imie;
int wiek;
std::cout << "Jak masz na imię?\n";
std::cin >> imie;
std::cout << "Ile masz lat?\n";
std::cin >> wiek;
std::cout << "Witaj " << imie << ". Wiem, że masz " << wiek << " lat.\n";
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment