我是靠谱客的博主 冷酷豌豆,最近开发中收集的这篇文章主要介绍7-1 查找字符串中最长的数字子串 (100 分),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

#include<stdio.h>
#include<string.h>
#define n 100
int main(){
    int i,j=0,k;
    char str[n],temp[n]={0},max[n]={0};
    gets(str);
    for(i=0;i<=strlen(str);i++){
        if(str[i]>='0'&&str[i]<='9'){
            temp[j]=str[i];
            j++;
        }
        else {
            j=0;
            if(strlen(temp)>strlen(max)){
                for(k=0;k<=strlen(temp);k++){
                    max[k]=temp[k];
                }
            }
        }
    }
    if(max[1]!=0) printf("%sn",max);
    else printf("Non");
    return 0;
}

最后

以上就是冷酷豌豆为你收集整理的7-1 查找字符串中最长的数字子串 (100 分)的全部内容,希望文章能够帮你解决7-1 查找字符串中最长的数字子串 (100 分)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部