#33183: cpp ans


yp11151025@yphs.tp.edu.tw (803-23江紘宇)

學校 : 臺北市私立延平高級中學
編號 : 196814
來源 : [203.72.178.1]
最後登入時間 :
2024-01-15 16:38:36
c007. 00272 - TeX Quotes -- UVa272 | From: [203.72.178.1] | 發表日期 : 2022-12-08 17:29

#include<iostream>
using namespace std;
int main(){
    int n=1;
    char c;
    while(cin.get(c)){
        if(c=='"')
            if(n++%2) cout<<"``"; else cout<<"''";
            else cout<<c;
    }
}

 
ZeroJudge Forum