标签:open color 1.7 content code 时间 空白 hid param
把一个字符串中特定的字符全部用给定的字符替换,得到一个新的字符串。
hello-how-are-you o O
hellO-hOw-are-yOu
#include<stdio.h> #include<string.h> int main() { int i,n; char a[31],b[2],c[2]; scanf("%s%s%s",a,b,c); n=strlen(a); for(i=0;i<n;++i) { if (a[i]==b[0]) a[i]=c[0]; printf("%c",a[i]); } return 0; }
标签:open color 1.7 content code 时间 空白 hid param
原文地址:http://www.cnblogs.com/dlzyts/p/6634850.html