View Code of Problem 25

#include <iostream>
#include <cstdio>
using namespace std;
int main(){
    int t;
    cin>>t;
    while(t--){
        char a;
        cin>>a;//小写比大写大32
        int t=a+32;
        cout<<(char)t<<endl;
    }
    return 0;
}

Double click to view unformatted code.


Back to problem 25