| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 511 人关注过本帖
标题:输出一句话中最长的单词.
只看楼主 加入收藏
x不会飞
Rank: 1
等 级:新手上路
帖 子:22
专家分:0
注 册:2010-11-22
结帖率:42.86%
收藏
 问题点数:0 回复次数:1 
输出一句话中最长的单词.
#include<stdio.h>
#include<string.h>
void fun(char str1[100])
{
int i=0,j=0;
char word0[15],word1[15];
word0[0]='a';
for(;str1[i]!='\0';i++)
 {
   if(!(str1[i]>=97&&str1[i]<=122||str1[i]>=65&&str1[i]<=90))
   {
    if(strlen(word0)<strlen(word1))
       strcpy(word0,word1);
    j=0;
   }
   else
   {
    word1[j]=str1[i];
    j++;
   }
 }
word0[j]='\0';
printf("最长的单词为:");
puts(word0);
}

void main()
{
 char str0[100];
 gets(str0);
 fun(str0);
}
输出一句话中最长的单词.
麻烦各位看看吧.总是有问题.
搜索更多相关主题的帖子: 单词 include 
2011-08-08 14:43
laoyang103
Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19Rank: 19
来 自:内蒙古包头
等 级:贵宾
威 望:19
帖 子:3082
专家分:11056
注 册:2010-5-22
收藏
得分:0 
程序代码:
#include<stdio.h>
#include<string.h>
void fun(char *str,char *res)
{
    char *p = str;
    char *pmax = str;
    int max = 0;
    int tempmax = 0;
    while(*p)
    {       
        if(*p != ' ')
        {
            tempmax++;
            p++;
        }
        else
        {
            if(tempmax > max)
            {
                pmax = p-tempmax;
                max = tempmax;
            }
            tempmax = 0;
            p++;
        }
    }
    if(tempmax > max)
    {
        max = tempmax;
        pmax = p-tempmax;
    }
    strncpy(res,pmax,max);
}

int main()
{
    char str[100] = {0},res[100] = {0};
    gets(str);
    fun(str,res);
    puts(res);
    return 0;
}
最后的字符串结束标志要处理好就可以了

                                         
===========深入<----------------->浅出============
2011-08-08 15:34
快速回复:输出一句话中最长的单词.
数据加载中...
 
   



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

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