Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <time.h>
- #include <stdlib.h>
- #include <string.h>
- int main() {
- char s[] = "abababcbcab"; // задаём некоторое слово
- int is;
- for(int i = 0; i < strlen(s); i++) { // выводим его
- printf("%c", s[i]);
- }
- printf("\n");
- for(int i= strlen(s) - 1;i >= 0; i--) { // находим самую правую b
- if(s[i] == 'b') {
- is = i;
- i = -1;
- }
- }
- for(int i = 0; i < is; i++) { // меняем все символы до самой правой b на a
- s[i] = 'a';
- }
- for(int i = 0; i < strlen(s); i++) { // выводим полученную строку
- printf("%c", s[i]);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement