View Code of Problem 25

#include<iostream>

using namespace std;

int main(void){
	char m;
	int t;
	cin>>t;
	while(t--){
		cin >> m;
		m=m+32;
		cout << m << endl;
	}
}

Double click to view unformatted code.


Back to problem 25