View Code of Problem 25

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

Double click to view unformatted code.


Back to problem 25