Guest User

Untitled

a guest
Apr 26th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. void srodek(string tekst)
  2. {
  3. for(int i = 0; i < 40 - (tekst.length() / 2); i++)
  4. cout << ' ';
  5.  
  6. cout << tekst << endl;
  7. }
Add Comment
Please, Sign In to add comment