一个acm程序小题目,无法通过,求指导? 输入一行字符,将此字符串中最长的单词输出。
#include<stdio.h>#include<string.h>intmain(){charc,mword[85],nword[85];//nword为当前单词,m...
#include<stdio.h>
#include<string.h>
int main()
{
char c,mword[85],nword[85]; //nword为当前单词,mword为最长单词
int mlen,nlen,i; //mlen为最长单词长度,nlen为当前单词长度
mlen=0;
nlen=0;
while((c=getchar())!=EOF) //到文件结束
{
if(c=='\n') //遇到回车的情况,统计结束
{
if(mlen==0) continue;
for(i=0; i<=mlen-1; ++i)
printf("%c",mword[i]);
printf("\n");
mlen=0;
nlen=0;
}
else if(('a'<=c && c<='z') || ('A'<=c && c<='Z')) //遇到单词的情况
{
nword[nlen]=c;
++nlen;
if(nlen>mlen)
{
strcpy(mword,nword); //将当前单词保存到最长单词
mlen=nlen;
}
}
else //出现其他字符表示进入下一个新单词的情况
{
nlen=0;
}
}
return 0;
}
输入:
Keywords insert, two way insertion sort,Abstract This paper discusses three method for two way insertion sort输出:
insertiondiscusses 展开
#include<string.h>
int main()
{
char c,mword[85],nword[85]; //nword为当前单词,mword为最长单词
int mlen,nlen,i; //mlen为最长单词长度,nlen为当前单词长度
mlen=0;
nlen=0;
while((c=getchar())!=EOF) //到文件结束
{
if(c=='\n') //遇到回车的情况,统计结束
{
if(mlen==0) continue;
for(i=0; i<=mlen-1; ++i)
printf("%c",mword[i]);
printf("\n");
mlen=0;
nlen=0;
}
else if(('a'<=c && c<='z') || ('A'<=c && c<='Z')) //遇到单词的情况
{
nword[nlen]=c;
++nlen;
if(nlen>mlen)
{
strcpy(mword,nword); //将当前单词保存到最长单词
mlen=nlen;
}
}
else //出现其他字符表示进入下一个新单词的情况
{
nlen=0;
}
}
return 0;
}
输入:
Keywords insert, two way insertion sort,Abstract This paper discusses three method for two way insertion sort输出:
insertiondiscusses 展开
意法半导体(中国)投资有限公司
2023-06-12 广告
2023-06-12 广告
单片机汇编程序是用汇编语言编写的程序,用于控制单片机的操作。汇编语言是一种比较接近计算机硬件语言的低级语言,相对于高级语言来说更容易理解和实现。下面是单片机汇编程序的基本步骤:1. 将代码和数据汇编到规定的段中。2. 在存储器中用未初始化的...
点击进入详情页
本回答由意法半导体(中国)投资有限公司提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询