View Code of Problem 25

#include<stdio.h>
int main(){
	int t;
	char z;
	scanf("%d",&t);
	while(t--){
	        char a;
			getchar();   //吸收回车键 
			scanf("%c",&a);
			a=a+32;
			printf("%c\n",a);		
	}
}

Double click to view unformatted code.


Back to problem 25