标签:get getch clu std include 第一题 return `` stdio.h
#include<stdio.h>
int main()
{
	int c,q=1;
	while((c=getchar())!=EOF)
	{
		if(c==‘"‘)
		{
			printf("%s",q?"``":"‘‘");
			q=!q;
		}
		else
		printf("%c",c);
	}
	return 0;
}
标签:get getch clu std include 第一题 return `` stdio.h
原文地址:http://www.cnblogs.com/lixiaofeiuptown/p/6596860.html