用c语言编写一个程序,从键盘上输入3个字符串,输出其中的最大者

 我来答
lgao622
2015-09-15 · 知道合伙人软件行家
lgao622
知道合伙人软件行家
采纳数:1137 获赞数:6548
毕业于武汉工程大学邮电与信息工程学院通信专业,软件行业,4年工作经验。

向TA提问 私信TA
展开全部

1. int strcmp( const char *str1, const char *str2 );

功能:比较字符串str1 and str2, 返回值如下:

返回值

< 0    str1 < str2

= 0    str1 == str2

> 0    str1 > str2

#include <stdio.h>
#include <string.h>

int main()
{
    char a[100], b[100], c[100];
    printf("input 3 string :\n");
    gets(a);
    gets(b);
    gets(c);
    char* p = strcmp(a, b) >= 0 ? a : b;
    printf("greater string :%s\n", strcmp(p, c) >= 0 ? p : c);
    return 0;
}

喜洋羊VS灰大狼
2011-05-15 · 超过15用户采纳过TA的回答
知道答主
回答量:48
采纳率:0%
帮助的人:42.4万
展开全部
#include <stdio.h>
#include <string.h>

#define LONGTH 10 //定义字符串最大长度
void main()
{
char a[LONGTH],b[LONGTH],c[LONGTH];
char *max;
printf("请输入三个字符串,以空格隔开:");
scanf("%s %s %s",a,b,c);
printf("输入的三个字符串为:\n");
printf("a=%s\n",a);
printf("b=%s\n",b);
printf("c=%s\n",c);
max=a;
if(strcmp(max,b)<0) max=b;
if(strcmp(max,b)<0) max=c;
printf("\nmax=%s\n",max);
}
我以前写的,可以运行,希望有帮助
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sun_siliang
2011-05-15 · TA获得超过2.6万个赞
知道大有可为答主
回答量:9913
采纳率:100%
帮助的人:4467万
展开全部
#include "stdio.h"
void main()
{int a,b,c,max;
printf("请输入三个数字:");
scanf("%d%d%d",&a,&b,&c);
max=a;
if(max<b) max=b;
if(max<c)max=c;
printf("max=%d\n",max);
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
pipalcn
2011-05-15 · TA获得超过182个赞
知道答主
回答量:96
采纳率:0%
帮助的人:0
展开全部
一楼的稍微修改一下就行了。
#include <stdio.h>
#include <string.h>
#define MAXLEN 1024
#define NUM 3
int main(int argc,char **argv)
{
char arr[NUM][MAXLEN];
char maxChar[MAXLEN];
memset(maxChar,0,MAXLEN);
int iCount=0;
for (iCount=0;iCount<NUM;iCount++)
memset(arr[iCount],0,MAXLEN);
for (iCount=0;iCount<NUM;iCount++)
{
printf("Input strings:");
scanf("%s",arr[iCount]);
}
strcpy(maxChar,arr[0]);
for (iCount=0;iCount<NUM;iCount++)
{
if(strcmp(maxChar,arr[iCount])<0) strcpy(maxChar,arr[iCount]);
}
printf("%s\n",maxChar);
return 0;
}

C:\>gcc -g test.c -o test

C:\>test
Input strings:abcd
Input strings:acdd
Input strings:btest
btest

C:\>
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式