fork download
  1. #include <stdio.h>
  2.  
  3. void replaceAll(char *str, char oldChar, char newChar) {
  4. while (*str != '\0') { // 終端文字 '\0' に達するまでループ
  5. if (*str == oldChar) {
  6. *str = newChar; // '1' を 'I' に置き換える
  7. }
  8. str++; // 次の文字へポインタを進める
  9. }
  10. }
  11.  
  12. int main() {
  13. char s[100]; // 最大100文字の入力
  14.  
  15.  
  16. scanf("%s", s); // 文字列を入力
  17.  
  18. replaceAll(s, '1', 'I'); // 全ての '1' を 'I' に置き換える
  19.  
  20. printf("変換後の文字列: %s\n", s);
  21.  
  22. return 0;
  23. }
  24.  
Success #stdin #stdout 0s 5268KB
stdin
1NFORMAT1ON
stdout
変換後の文字列: INFORMATION