#include <stdio.h>
int main()
{
int style = 0;
char c;
while (1){
c = getchar();
if (c == EOF) break;
if (c == '\"')
{
if (style == 0)
{
printf("``");
style = 1;
}
else
{
printf("''");
style = 0;
}
}
else putchar(c);
}
return 0;
}
回目錄
回首頁
學習程式設計過程中總會碰到疑難雜症,而這些疑難雜症又不是一時能解決,不論是以往或是從未遇過的,都可將這些在程式設計上所碰到問題的解決方法筆記下來,或許解決了就算了,但等到下次有相同問題時,可將這程式設計筆記再拿來參考,就不枉做筆記了。
#include <stdio.h>
int main()
{
int style = 0;
char c;
while (1){
c = getchar();
if (c == EOF) break;
if (c == '\"')
{
if (style == 0)
{
printf("``");
style = 1;
}
else
{
printf("''");
style = 0;
}
}
else putchar(c);
}
return 0;
}
沒有留言 :
張貼留言