View Code of Problem 25

#include <iostream>
using namespace std;

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

Double click to view unformatted code.


Back to problem 25