本文主要是介绍ACM从零开始---电子科大POJ 统计单词,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
统计单词
Time Limit: 3000/1000MS (Java/Others) Memory Limit: 65535/65535KB (Java/Others)
C-sources:
#include <stdio.h>
#include <string.h>
#define N 100
int main()
{int n,i,p,q,j,k,wordnum;char ch,temp;printf("Please input a n number:\n");scanf("%d%c",&n,&temp);char **str=new char *[n];for(i=0;i<n;i++)str[i]=new char[N];printf("Please input n strings:\n");for(p=0;p<n;p++){q=0;while((ch=getchar())!='\n'){str[p][q]=ch;q++;}}for(j=0;j<n;j++){k=0;wordnum=0;while(str[j][k]!='\0'){if(str[j][k]==' ')wordnum++;k++;}printf("%d\n",++wordnum);}return 0;
}
转载请注明作者:小刘
这篇关于ACM从零开始---电子科大POJ 统计单词的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!