View Code of Problem 25

#include <iostream>
#include <cstdio>
using namespace std;
int main(){
    int t;
    cin>>t;
    char s;
    while(t--){
        cin>>s;
        cout<<char(s+32)<<endl;
    }
    return 0;
}


Double click to view unformatted code.


Back to problem 25