Hãy decode thông báo này:
Gsrh nvhhztv rh vmxibgvw. Blf nfhg wvxlwv rg!
gợi ý: đảo ngược
This message is encrypted. You must decode it!
#include <u.h> #include <libc.h> #include <ctype.h> #include <bio.h> Biobuf bin; Biobuf bout; void main(void) { int c; Binit(&bin, 0, OREAD); Binit(&bout, 1, OWRITE); while((c = Bgetc(&bin)) != Beof){ if (isupper(c)) Bputc(&bout, 'Z' - (c - 'A')); else if (islower(c)) Bputc(&bout, 'z' - (c - 'a')); else Bputc(&bout, c); Bflush(&bout); } exits(0); }
Đã xoá vì cách không chuẩn
peak
Bình luận
This message is encrypted. You must decode it!
Đã xoá vì cách không chuẩn
peak