Nerde Nolzda

ZeroJudge: a009 解碼器

K = 7

ZeroJudge Link (Zh)

#include <stdio.h>

main() {
  char str[100];
  while(scanf("%s", str) != EOF) {
    int i = 0;
    while(str[i]) {
      str[i++] -=7;
    }
    printf("%s\n", str);
  }
  return 0;
}

Related Posts

0 comments

Post a comment

Send an email to comment@nerde.pw.