View Code of Problem 25

#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
	int n;
	cin>>n; 
	for(int i = 0;i<n;i++){
		char c;
		cin>>c;
		printf("%c\n",c-'A'+'a'); 
	}
	return 0;
}

Double click to view unformatted code.


Back to problem 25