View Code of Problem 25

#include<iostream>
using namespace std;

int main()
{
    int a;
    cin >> a;
    while (a--) {
	   char c;
	   cin >> c;
	   c = c + 32;
	   cout << c << endl;
    }
    

    return 0;
}

Double click to view unformatted code.


Back to problem 25