c语言去掉重复的字符后输出.
#include<stdio.h>intmain(void){inti;charstr[80],b[80];printf("Inputastring:");i=0;whi...
#include<stdio.h>
int main(void)
{
int i;
char str[80],b[80];
printf("Input a string: ");
i=0;
while((str[i]=getchar())!='/n')
i++;
str[i]='\0';
for(i=0;str[i]!='\0';i++)
{
for(i=0;b[i]!='\0';i++)
if(str[i]!=b[i])
b[i]=str[i];}
for(i=0;b[i]!='\0';i++)
printf("%c",b[i]);
return 0;}
为什么没有输出?求大神教。。。 展开
int main(void)
{
int i;
char str[80],b[80];
printf("Input a string: ");
i=0;
while((str[i]=getchar())!='/n')
i++;
str[i]='\0';
for(i=0;str[i]!='\0';i++)
{
for(i=0;b[i]!='\0';i++)
if(str[i]!=b[i])
b[i]=str[i];}
for(i=0;b[i]!='\0';i++)
printf("%c",b[i]);
return 0;}
为什么没有输出?求大神教。。。 展开
6个回答
展开全部
#include<stdio.h>
int main(void)
{
int i, j = 0;
char str[80], b[80];
printf("Input a string: ");
i = 0;
while ((str[i] = getchar()) != '\n')
i++;
str[i] = '\0';
for (i = 0; str[i] != '\0'; i++)
if (str[i] != str[i + 1])
b[j++] = str[i];
b[j] = '\0';
if (str[i] != str[i + 1])
b[j++] = str[i];
for (i = 0; b[i] != '\0'; i++)
printf("%c", b[i]);
return 0;
}
字符需要排序或升序排序,才能去掉字符。
int main(void)
{
int i, j = 0;
char str[80], b[80];
printf("Input a string: ");
i = 0;
while ((str[i] = getchar()) != '\n')
i++;
str[i] = '\0';
for (i = 0; str[i] != '\0'; i++)
if (str[i] != str[i + 1])
b[j++] = str[i];
b[j] = '\0';
if (str[i] != str[i + 1])
b[j++] = str[i];
for (i = 0; b[i] != '\0'; i++)
printf("%c", b[i]);
return 0;
}
字符需要排序或升序排序,才能去掉字符。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询