欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C:输入一个文本行,其中包含多个单词,计算其中最长的单词长度(学习笔记)

程序员文章站 2024-02-25 15:55:39
...
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>

int main(){
    int value = 0;
    int maxvalue = 0;
    int length;
    char str[80];
    
    gets(str);
    length = strlen(str);
    
    for(int i = 0; i < length+1; i++){
        if(isalpha(str[i])){
            value++;
        }
        else{
            if(value > maxvalue)
                maxvalue = value;
        value = 0;
        }
        
    }
    printf("%d\n", maxvalue);
    
    
    return 0;
}

程序直接调用库函数ctype.h,用isalpha直接判断英文字母。