Advertisement
InnaSibirova

M4*

Oct 29th, 2022 (edited)
1,081
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.67 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <time.h>
  3. #include <stdlib.h>
  4. #include <string.h>
  5. int main() {
  6.     char s[] = "abababcbcab"; // задаём некоторое слово
  7.     int is;
  8.     for(int i = 0; i < strlen(s); i++) { // выводим его
  9.         printf("%c", s[i]);
  10.     }
  11.     printf("\n");
  12.     for(int i= strlen(s) - 1;i >= 0; i--) { // находим самую правую b
  13.         if(s[i] == 'b') {
  14.             is = i;
  15.             i = -1;
  16.         }
  17.     }
  18.     for(int i = 0; i < is; i++) { // меняем все символы до самой правой b на a
  19.         s[i] = 'a';
  20.     }
  21.     for(int i = 0; i < strlen(s); i++) { // выводим полученную строку
  22.         printf("%c", s[i]);
  23.     }
  24.     return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement