View Code of Problem 25

#include<stdio.h>
//#include<string.h>
int main()
{
	int t;
	scanf("%d",&t);
	char c;
	while(scanf("%c",&c)!=EOF&&t>0)
	{
		printf("%c\n",c+32);
		t--;
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 25