Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main(void)
  6. {
  7. char ch;
  8. int count = 1;
  9. while( cin.get(ch) )
  10. {
  11. if(ch == '"')
  12. {
  13. if( count == 1 )
  14. cout << "``";
  15. else if( count == 0 )
  16. cout << "''";
  17.  
  18. count = 1 - count;
  19. continue;
  20. }
  21.  
  22. cout << ch;
  23. }
  24.  
  25. return 0;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement