" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>#include <conio.h>
int main()
{
std::string strImie;
std::cout<<"Podaj swoje imie: " ; std::cin>>strImie; std::string strNazwisko; std::cout<<"Podaj swoje nazwisko: " ; std::cin>>strNazwisko; std::string strAdres; std::cout<<"Podaj swoj adres: " ; std::cin>>strAdres; std::string strTelefon; std::cout<<"Podaj swoj telefon: " ; std::cin>>strTelefon; std::cout << "Twoje imie to: " << strImie << "." << std::endl; std::cout << "Twoje nazwisko to: " << strNazwisko << "." << std::endl; std::cout << "Twoj adres to: " << strAdres << "." << std::endl; std::cout << "Twoj telefon to: " << strTelefon << "." << std::endl;
getch();}