#33259: 參考看看


yp11151211@yphs.tp.edu.tw (811-43廖翊宏)

學校 : 臺北市私立延平高級中學
編號 : 196806
來源 : [203.72.178.1]
最後登入時間 :
2024-04-13 11:29:00
c007. 00272 - TeX Quotes -- UVa272 | From: [203.72.178.2] | 發表日期 : 2022-12-16 13:45

#include<bits/stdc++.h>
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;
    }
    return 0;
}

 
ZeroJudge Forum