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