| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 2453 人关注过本帖
标题:输入字符串,实现单词的分离并计数
取消只看楼主 加入收藏
林雅南
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2017-5-14
结帖率:0
收藏
已结贴  问题点数:20 回复次数:1 
输入字符串,实现单词的分离并计数
输入字符串,实现单词的分离并计数
用函数
不知道为什么编译出来什么word【i】根本没有
没有语法错误。
strC是计数,记录每个word【i】出现地次数
str是保存字符串
word【】【】是一个单词一个word【i】
求帮忙看一下,自己debug了一整天都不行,初学C语言,拜托指点一下。
#include <stdio.h>
#include <string.h>
#include<conio.h>
#include<ctype.h>
#define M 1000
#define N 20
void beep();
void GetPassage(char str[]);
void WordSepa(char str[],int strC[],char word[][20]);
void main()
{
 char str[M];
 int strC[N];
 char word[M/N][N];
 GetPassage(str);
 printf("%s\n",str);
 WordSepa(str,strC,word);
}
void beep(){
 printf("\07");
}
void GetPassage(char str[])
{
 char ch;
 int i=0;
 while(1){
 ch=getch();
 if(ch=='\r')
  break;
     if(ch=='\b'){
  if(i>0){
  printf("%c %c",ch,ch);
  i--;
  }
  else
   beep();
  continue;
 }
 if(ch!=32&&ch!=44&&ch!=46&&isalpha(ch)==0){
  beep();
  continue;}
 if(i<N){
 printf("%c",ch);
  str[i++]=ch;
 }
 else
   beep();
 
 }
 str[i]='\0';
}
void WordSepa(char str[],int strC[],char word[][20])
{
int i=0,j=0,k=0,t=0,x=0;
while(j<t)
{
for(;str[j]==32;j++);
while(k<N&&str[j]!=32)
word[i][k++]=str[j++];
word[i][k]='\0';
strC[i]=1;
for(x=0;x<i;x++)
if(stricmp(word[i],word[x])==0)
{
strC[x]++;
i--;
break;
}
i++;
k=0;
}
t=0;
for(;t<i;t++)
printf("%s(%d)\n",word[t],strC[t]);
}
搜索更多相关主题的帖子: include 字符串 C语言 单词 记录 
2017-05-14 17:40
林雅南
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2017-5-14
收藏
得分:0 
我知道对于大佬们来说很简单,但是我初学C啊,真的不知道哪里错了。求大佬们帮助
2017-05-14 17:54
快速回复:输入字符串,实现单词的分离并计数
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.044923 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved