6.3.14. Sa tastature upisati više znakova i ispisati na ekran.

Listing programa:

#include <iostream>
#include <string>
using namespace std;
int main(){
string str;
cin >> str;
cout << str << endl;
system("PAUSE");
return 0;
}

Index