Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void rekurzija()
- {
- char text;
- cin >> text;
- if (text != '.')
- {
- rekurzija();
- cout << text;
- }
- cout << endl<<"Obrnutim redoslijedom ste unijeli: ";
- }
- void main()
- {
- cout << "Unesite zeljeni tekst: ";
- rekurzija();
- system("PAUSE");
- }
Advertisement
Add Comment
Please, Sign In to add comment