View Code of Problem 25

#include <stdio.h>
int main()
{  
	char c,a;
	int i,t;
	scanf("%d",&t);
	for(i=0;i<t;i++)
	{
		getchar();//进入缓冲区读取字符
		scanf("%c",&c);
		a=c+32;
		printf("%c\n",a);
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 25