" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <string>
using namespace std;
int main()
{
string napisTMP;
cout << "Jak masz na imie?" << endl;
cin >> napisTMP;
cout << "Twoje imie to: " << napisTMP << endl;
system("PAUSE");
return EXIT_SUCCESS;
}
Działanie:
Jak masz na imie?
Alex
Twoje imie to: Alex
Aby kontynuować, naciśnij dowolny klawisz . . .