大小写字母转化

	int ch;
	while ((ch=getchar())!=EOF)
	{
		if (ch>='A'&&ch<='Z')
		{
			ch=ch+32;
		}
		else
			putchar(ch) ;

	}

你可能感兴趣的:(大小写字母转化)