View Code of Problem 25

#include <iostream>
#include<string.h>
#include<math.h>
using namespace std;
int main()
{
	int n;
	char ch;
	scanf("%d",&n);
	while(n--)
	{
		cin>>ch;
		ch=ch+32;
		printf("%c\n",ch);
	}
	return 0;
 } 

Double click to view unformatted code.


Back to problem 25