View Code of Problem 25

#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;

int main() {
	int t;
	scanf("%d",&t);
	getchar();
	while(t--) {
		char c;
		scanf("%c",&c);
		getchar();
		printf("%c\n",c+32);
	}
}

Double click to view unformatted code.


Back to problem 25