mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1756.c
This commit is contained in:
parent
eafa27063a
commit
91e473ce32
22
QUSTOJ/1756.c
Normal file
22
QUSTOJ/1756.c
Normal file
|
@ -0,0 +1,22 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
void replace(char* str,char a,char b)
|
||||
{
|
||||
int L=strlen(str);
|
||||
for(int i=0;i<L;i++)
|
||||
{
|
||||
if(str[i]==a) str[i]=b;
|
||||
}
|
||||
}
|
||||
|
||||
char msg[1024];
|
||||
int main()
|
||||
{
|
||||
gets(msg);
|
||||
char a,b;
|
||||
scanf("%c,%c",&a,&b);
|
||||
replace(msg,a,b);
|
||||
printf("%s\n",msg);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user