View Code of Problem 25

#include<bits/stdc++.h>
using namespace std;
int main()
{
	int n;
	char c;
	cin>>n;
	getchar();
	while(n--)
	{
		cin>>c;
		cout<<(char)(c+32)<<endl;
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 25