上下2个程序结合起来,行数控制在90到150行,谢谢了,大佬!

作者在 2019-01-10 18:45:16 发布以下内容
#include <stdio.h>
#define MAXLINE 1000

int get_line(char line[],int maxline);
void copy_line(char to[],char from[]);

int main()
{
    int len;
    int max;
    char line[MAXLINE];
    char longeat[MAXLINE];
    
    max=0;
    while((len=get_line(line,MAXLINE))>0)
          if(len>max){
            max=len;
            copy_line(longeat,line);
          }
    if(max>0)
      printf("%s",longeat);
    return 0;
}

int get_line(char s[],int lim)
{
   int c,i;
   
   for(i=0;i<lim-i && (c=getchar())!=EOF && c!='\n';++i)
       s[i]=c;
   if(c=='\n'){
     s[i]=c;
     ++i;
   }
   s[i]='\0';
   return i;
}

void copy_line(char to[],char from[])
{
    int i;
    
    i=0;
    while((to[i]=from[i])!='\0')
    ++i;

}





#include <stdio.h>
int main()
{
 int c,i,nwhite,nother;
 int ndigit[10];
 
 nwhite=nother=0;
 for(i=0;i<10;++i)
   ndigit[i]=0;
   
 while((c=getchar())!=EOF)
   if(c>'0'&&c<='9')
     ++ndigit[c-'0'];
   else if(c==' '||c=='\n'||c=='\t')
     ++nwhite;
   else
     ++nother;

   printf("数字出现的次数分别是:");
   for(i=0;i<10;++i)
   printf(" %d",ndigit[i]);
  printf(",空白符是%d个,其他字符是%d个\n",nwhite,nother);
}

默认分类 | 阅读 249 次
文章评论,共0条
游客请输入验证码
浏览610次
文章分类
文章归档
最新评论