Advertisement
adrianflorea

272 - TEX Quotes

Nov 28th, 2015
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include<iostream>
  2. #include<string.h>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. char c;
  8. bool ok=1;
  9. while(cin>>c){
  10. if(c=='"')
  11. {
  12. if(ok)cout<<"``";else
  13. cout<<"''";
  14. ok=(!ok);}
  15. else cout<<c;
  16. }
  17. return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement