Тема: заміна символів в рядку
У рядку символів замінити усі вибрані користувачем символи на інші......ось що в мене вийшлоБ але не працює)
#include <stdio.h>
#include <iostream>
#include <conio.h>
#include <math.h>
#include <string.h>
void main(void){
char* ptr;
char string[128];
char symbol1[12];
char symbol2[12];
int i; bool a; int c=0;
cout<<"Stroka:<<";
cin>>string;
cout<<"zamenit";
cin>>symbol1;
cout<<"na";
cin>>symbol2;
int ls=strlen(string);
int ls1=strlen(symbol1);
int ls2=strlen(symbol2);
for (i = 0; i< ls; i++) {
int p=i;
for (p=i; p < i+ls1; p++) {
if (string[p]!=symbol1[p]) {a=0;break;}
else c++;
}
if (c==ls1) {for (p=i;p<i+ls1;p++) {string[p]=symbol2[p];c=0;}}}
puts (string);
system("Pause");}