下列程序的运行结果是【 】。 # include<iostream. h> # include<string. h> void main() { char * a[5]={"stuent","worker","tea

admin2010-06-06  38

问题 下列程序的运行结果是【 】。
   # include<iostream. h>
   # include<string. h>
   void main()
   {
        char * a[5]={"stuent","worker","teacher","soldier"," peasant"};
        char * p1, * p2;
        p1=p2=a[0]
        for(int i=0;i<5;i++)
        {
             if(strcmp(a,p1)>0)
                   p1=a;
             if(strcmp(a,p2)<0)
                   p2=a;
        }
        cout<<p1<<","<<p2<<endl;
   }

选项

答案worker,peasant

解析 分析本题的for循环体内的语句可知,p1和p2将放置最大和最小的字符串,这里的比较是以第一个字符值为基准的。
转载请注明原文地址:https://kaotiyun.com/show/Uujp777K
0

最新回复(0)