fork download
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5. char encrypted[] = "NMKHMD";
  6. char decrypted[50];
  7. int i;
  8.  
  9. for (i = 0; i < strlen(encrypted); i++) {
  10. decrypted[i] = encrypted[i] + 33;
  11. }
  12. decrypted[i] = '\0';
  13.  
  14. printf("結果: %s\n", decrypted);
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
結果: online