解题思路:将要改变的地方标记起来;
重新用两个字符数组来比较
注意事项:要使用getchar来缓冲掉输入单词后出现的换行符
参考代码:
#include <stdio.h>
#include <string.h>
int strcp(char s1[],char s2[])
{
int i;
char s3[20], s4[20];
strcpy(s3, s1);
strcpy(s4, s2);
i = 0;
while (s3[i] != '\0')
{
if ('a' <= s3[i] && 'z' >= s3[i])
s3[i] -= 32;
i++;
}
i = 0;
while (s4[i] != '\0')
{
if ('a' <= s4[i] && 'z' >= s4[i])
s4[i] -= 32;
i++;
}
if (strcmp(s3, s4) == 0)
return 1;
return 0;
}
int main()
{
char s[20][1000], s1[10000], s3[20];
int n, i, lenth, j, start, end, k, l;
scanf("%d", &n);
for (i = 0; i < n; i++)
scanf("%s", &s[i]);
getchar();
while (gets(s1) != NULL)
{
lenth = strlen(s1);
for (i = 0; i < lenth; i++)
{
start = i;
l = 0;
while (s1[i] != ' '&&s1[i] != '\0')
{
s3[l] = s1[i];
l++;
i++;
}
s3[l] = '\0';
end = i - 1;
for (j = 0; j < n; j++)
{
if (strcp(s[j], s3))
{
for (k = start + 1; k <= end; k++)
{
s1[k] = '*';
}
}
}
}
puts(s1);
}
}
0.0分
0 人评分
C语言网提供由在职研发工程师或ACM蓝桥杯竞赛优秀选手录制的视频教程,并配有习题和答疑,点击了解:
一点编程也不会写的:零基础C语言学练课程
解决困扰你多年的C语言疑难杂症特性的C语言进阶课程
从零到写出一个爬虫的Python编程课程
只会语法写不出代码?手把手带你写100个编程真题的编程百练课程
信息学奥赛或C++选手的 必学C++课程
蓝桥杯ACM、信息学奥赛的必学课程:算法竞赛课入门课程
手把手讲解近五年真题的蓝桥杯辅导课程
发表评论 取消回复