UVa 458 - The Decoder

#include <stdio.h>
int main()
{
    char ch;
    while (scanf("%c", &ch)==1)
    {
        if (ch == '\n')
            printf("\n");
        else
            printf("%c",ch-7);
    }
    return 0;
}
Share on Google Plus

About Unknown

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 মন্তব্য(গুলি):

একটি মন্তব্য পোস্ট করুন