编写—个函数,其功能是:从传入的num个字符中找出最长的一个字符串,并通过形参指针max传回该串地址(用****作为结束输入的标识)。 注意:部分源程序在文件PROG1.C中。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入你编

admin2017-02-24  34

问题 编写—个函数,其功能是:从传入的num个字符中找出最长的一个字符串,并通过形参指针max传回该串地址(用****作为结束输入的标识)。
注意:部分源程序在文件PROG1.C中。
请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入你编写的若干语句。
试题程序:
1  #include<conio.h>
2  #include<stdio.h>
3  #include<string.h>
4  #include<stdlib.h>
5  char*fun(char(*a)[81],int num,char * max)
6  {
7
8  }
9  void main()
10  {
11  FILE*wf;
12  char ss[10][81],*ps=NULL;
13  char s[3][81]={"abcd","deg","diegns"),*P=NULL;
14  int i=0,n;
15  system("CLS");
16  printf("输入若干个字符串:");
17  gets(ss);
18  puts(ss);
19  while(!strcmp(ss,"****")==0)/*用4个星号作为结束输入的标志*/
20  {
21    i++;
22    gets(SS);
23    puts(SS);
24    }
25    n=i;
26    ps=fun(ss,n,ps);
27    printf("\nmax=%s\n",ps);
28   /*****************/
29     wf=fopen("out.dat","w“);
30     P=fun(s,3,p);
31     fprintf(wf,"%s",P);
32     fclose(wf);
33  /******************/
34  }

选项

答案char *fun(char(*a)[81],int num, char *max) { int i=0; max=a[0]; for(i=0;i<num;i++) /*找出最长的一个字符串*/ if(strlen(max) <strlen(a[i])) max=a[i]; return max;/*传回最长字符串的地址*/ }

解析 首先应该明白ss是一个指向一维数组的指针变量,max是指向指针的变量,所以引用变量时要注意加上*。本程序使用循环语句遍历字符串数组,使用条件语句判断该字符串是否最长。
转载请注明原文地址:https://kaotiyun.com/show/s0Dp777K
0

最新回复(0)