View Code of Problem 25

#include<stdio.h>
int main()
{
	int n;
	int i;
	char s;
	scanf("%d\n",&n);
	while(n>0)
	{
		scanf("%c",&s);
		if(s>='A'&&s<='Z')
		{
			printf("%c\n",s+32);
		}
		else
		{
			n--;
		}
	}
} 

Double click to view unformatted code.


Back to problem 25