输入三个整数,按由小到大的顺序输出,然后将程序改为:输入三个字符串,按由小到大的顺序输出。

#include<stdio.h>#include<string.h>voidCompareInt(int*a,int*b,int*c){if(*a>=*b&&*a>=*... #include <stdio.h>
#include <string.h>
void CompareInt(int* a, int* b, int* c)
{
if( *a >= *b && *a >= *c )
{
if( *b >= *c )
{
printf("%d %d %d", *c, *b, *a);
}
else
{
printf("%d %d %d", *b, *c, *a);
}
}
if( *b >= *a && *b >= *c )
{
if( *a >= *c )
{
printf("%d %d %d", *c, *a, *b);
}
else
{
printf("%d %d %d",*a, *c, *b);
}
}
if( *c >= *a && *c >= *b )
{
if( *a >= *b )
{
printf("%d %d %d",*b, *a, *c);
}
else
{
printf("%d %d %d",*a, *b, *c);
}
}
}
void CompareChar(char* a, char* b, char* c)
{
bool key = false;
if( (strcmp(a,b)==1||strcmp(a,b)==0) && (strcmp(a,c)==1||strcmp(a,c)==0) )//strcmp(a,c)==0?
{
if(strcmp(b,c)==1 || strcmp(b,c)==0)
{
printf("%s %s %s",c, b, a);
key = true;
}
else
{
printf("%s %s %s",b, c, a);
key = true;
}
}
if( (strcmp(b,a)==1||strcmp(b,a)==0) && (strcmp(b,c)==1||strcmp(b,c)==0) )
{
if(key)
{}
else if(strcmp(a,c)==1 || strcmp(a,c)==0)
{
printf("%s %s %s",c,a,b);
key=true;
}
else
{
printf("%s %s %s",a,c,b);
key=true;
}
}
if((strcmp(c,a)==1||strcmp(c,a)==0) && (strcmp(c,b)==1||strcmp(c,b)==0))
{
if(key)
{}
else if(strcmp(a,b)==1||strcmp(a,b)==0)
{
printf("%s %s %s",b,a,c);
}
else
{
printf("%s %s %s",a,b,c);
}
}
}
int main(void)
{
int a = 0, b = 0, c = 0;
printf("please input three number:");
scanf("%d %d %d",&a, &b, &c);
CompareInt(&a, &b, &c);//这一部分以前是注释掉的。
/*char a[20]="frankzjx",b[20]="zjx",c[20]="true";*/
printf("please input three number:");
scanf("%s%s%s",&a, &b, &c);
CompareChar(a, b, c);//?
return 0;
}
这个程序有点小问题,请高手修改下。
还有if( (strcmp(a,b)==1||strcmp(a,b)==0) && (strcmp(a,c)==1||strcmp(a,c)==0) )这句什么意思? (strcmp(a,b)==1|为什么==1,==0?
展开
 我来答
帐号已注销
2020-01-19 · TA获得超过77.1万个赞
知道小有建树答主
回答量:4168
采纳率:93%
帮助的人:169万
展开全部

#include <stdio.h>

#include <string.h>

void CompareInt(int* a, int* b, int* c)

{

if( *a >= *b && *a >= *c )

{

if( *b >= *c )

{

printf("%d %d %d", *c, *b, *a);

}

else

{

printf("%d %d %d", *b, *c, *a);

}

}

if( *b >= *a && *b >= *c )

{

if( *a >= *c )

{

printf("%d %d %d", *c, *a, *b);

}

else

{

printf("%d %d %d",*a, *c, *b);

}

}

if( *c >= *a && *c >= *b )

{

if( *a >= *b )

{

printf("%d %d %d",*b, *a, *c);

}

else

{

printf("%d %d %d",*a, *b, *c);

}

}

}

void CompareChar(char* a, char* b, char* c)

{

bool key = false;

if( (strcmp(a,b)>=0 && strcmp(a,c)>=0) )//strcmp(a,c)==0?

{

if(strcmp(b,c)>=0)

{

printf("%s %s %s",c, b, a);

key = true;

}

else

{

printf("%s %s %s",b, c, a);

key = true;

}

}

if( (strcmp(b,a)>=0) && (strcmp(b,c)>=0) )

{

if(key)

{}

else if(strcmp(a,c)>=0)

{

printf("%s %s %s",c,a,b);

key=true;

}

else

{

printf("%s %s %s",a,c,b);

key=true;

}

}

if((strcmp(c,a)>=0) && (strcmp(c,b)>=0))

{

if(key)

{}

else if(strcmp(a,b)>=0)

{

printf("%s %s %s",b,a,c);

}

else

{

printf("%s %s %s",a,b,c);

}

}

}

int main(void)

{

int a = 0, b = 0, c = 0;

printf("please input three numbers:");

scanf("%d %d %d",&a, &b, &c);

CompareInt(&a, &b, &c);//这一部分以前是注释掉的。

char a1[20],b1[20],c1[20];

printf("\nplease input three strings:");

scanf("%s%s%s",&a, &b, &c);

CompareChar(a1, b1, c1);//?

return 0;

}

strcmp(a,b)的返回值有三种可能:-1,0,1。分别表示比较的字符串a<b,a=b,a>b(这里的符号表示字符串的字典顺序)。所以(strcmp(a,b)==1||strcmp(a,b)==0就相当于整数的a >= b

按照字符串的字典顺序frank<true<zjx,比较的规则是先比第一个字母,如果相同比第二个字母。这几个字符串第一个字母就可以确定顺序 f < t < z

if (key)这个key是一个标志位,如果之前已经比较出来了就设置为true,如果之前的if里已经设置好了,那么后面的if就不会执行任何东西了。这种写法完全没有必要,用if else嵌套一下会更好。

扩展资料:

非格式化顺序I/O处理器假定是128字节的记录,任何非格式化的一个顺序I/O文件的I/O把记录指针定位在128字节物理记录的结束处,如果所读的字节数不同于原来的字节数,就可能产生不希望的结果。

例如:假定几个180字节的记录写入一个非格式化顺序文件。并假定有100个字节是从文件中第180个字节的记录中读,那么,这100个字节的记录被输入并赋值给I/O列表中的元素。记录指针则定位在下一个128字节物理记录的开始。注意,这将导致在随后的读语句中开始读时,读了额外的数据,而不会跳过额外的数据。

避免这种情况发生的最好方法是保持输入记录和输出记录长度一样。如果遵守简单的预防措施,则利用非格式化顺序I/O就可以传输大于128字节的记录。 

参考资料来源:百度百科-顺序输入

听不清啊
高粉答主

推荐于2017-09-29 · 说的都是干货,快来关注
知道顶级答主
回答量:7.8万
采纳率:89%
帮助的人:1.9亿
展开全部

已经修改完成:

#include <stdio.h>
#include <string.h>
void CompareInt(int* a, int* b, int* c)
{
if( *a >= *b && *a >= *c )
{
if( *b >= *c )
{
printf("%d %d %d", *c, *b, *a);
}
else
{
printf("%d %d %d", *b, *c, *a);
}
}
if( *b >= *a && *b >= *c )
{
if( *a >= *c )
{
printf("%d %d %d", *c, *a, *b);
}
else
{
printf("%d %d %d",*a, *c, *b);
}
}
if( *c >= *a && *c >= *b )
{
if( *a >= *b )
{
printf("%d %d %d",*b, *a, *c);
}
else
{
printf("%d %d %d",*a, *b, *c);
}
}
}
void CompareChar(char* a, char* b, char* c)
{
bool key = false;
if( (strcmp(a,b)>=0 && strcmp(a,c)>=0) )//strcmp(a,c)==0?
{
if(strcmp(b,c)>=0)
{
printf("%s %s %s",c, b, a);
key = true;
}
else
{
printf("%s %s %s",b, c, a);
key = true;
}
}
if( (strcmp(b,a)>=0) && (strcmp(b,c)>=0) )
{
if(key)
{}
else if(strcmp(a,c)>=0)
{
printf("%s %s %s",c,a,b);
key=true;
}
else
{
printf("%s %s %s",a,c,b);
key=true;
}
}
if((strcmp(c,a)>=0) && (strcmp(c,b)>=0))
{
if(key)
{}
else if(strcmp(a,b)>=0)
{
printf("%s %s %s",b,a,c);
}
else
{
printf("%s %s %s",a,b,c);
}
}
}
int main(void)
{
int a = 0, b = 0, c = 0;
printf("please input three numbers:");
scanf("%d %d %d",&a, &b, &c);
CompareInt(&a, &b, &c);//这一部分以前是注释掉的。
char a1[20],b1[20],c1[20];
printf("\nplease input three strings:");
scanf("%s%s%s",&a, &b, &c);
CompareChar(a1, b1, c1);//?
return 0;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
jackwind1987
2013-01-23 · TA获得超过2738个赞
知道大有可为答主
回答量:1268
采纳率:50%
帮助的人:496万
展开全部
CompareChar(a, b, c);//?
这个函数CompareChar要求参数是三个char*类型的,abc是整数类型的,当然不行了。像你注释那样定义不就行了么?
/*char a[20]="frankzjx",b[20]="zjx",c[20]="true";*/

主函数改成这样就行了
int main(void)
{
char a[20]="frankzjx",b[20]="zjx",c[20]="true";
printf("please input three number:");
scanf("%s%s%s",&a, &b, &c);
CompareChar(a, b, c);
return 0;
}
你弄清楚strcmp函数的含义就明白是什么意思了:strcmp(a,b)的返回值有三种可能:-1,0,1。分别表示比较的字符串a<b,a=b,a>b(这里的符号表示字符串的字典顺序)。所以(strcmp(a,b)==1||strcmp(a,b)==0就相当于整数的a >= b
更多追问追答
追问
谢谢你,程序运行了下:
please input three number:frankzjx zjx true a b c
frankzjx true zjx请按任意键继续. . .a>b, a>c, bb, a>c, b<c
结果应是:zjx true frank
please input three number:acbkdf trujdfj abc
abc acbkdf trujdfj请按任意键继续. . .这是对的。咋回事?
追答
你输入什么了?结果是什么?不要粘贴不必要的东西,可以截个图。你的代码就是从小到大排序的,结果应该是对的。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式