码迷,mamicode.com
首页 > 其他好文 > 详细

有若干个字符串,比较找出其中最大者

时间:2015-07-06 19:50:03      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:

#include<stdio.h>
#include<string.h>
int main()
{
	char str[3][50];
	char string[50];

	int i;

	for(i=0;i<3;i++)
		gets(str[i]);

	if(strcmp(str[0],str[1])>0)
		strcpy(string,str[0]);
	else
		strcpy(string,str[1]);
	if(strcmp(str[2],string)>0)
		strcpy(string,str[2]);
	printf("\nThe largent string is:\n%s\n",string);
	return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

有若干个字符串,比较找出其中最大者

标签:

原文地址:http://blog.csdn.net/u012701023/article/details/46778233

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!