UVaOJ 458 - The Decoder

AOAPC I: Beginning Algorithm Contests (Rujia Liu) ::Volume 0. Getting Started


Description

简单的编码解码加密问题。

要求将每个字符(在ASCII码的基础上)增加一个定值,得到新的字符输出。


Type

Water


Analysis

字符一个个地输入,如果是换行符就直接输出,不是就加上定值输出即可。

定值虽然题目没有给出,但是可以通过样例计算出来。


Solution

// UVaOJ 458
// The Decoder
// by A Code Rabbit

#include <cstdio>

char ch;

int main() {
    while ((ch = getchar()) != EOF) {
        putchar(ch == '\n' ? ch : ch + '*' - '1');
    }

    return 0;
}

你可能感兴趣的:(UVaOJ 458 - The Decoder)