/*#include
成都创新互联公司主要从事成都网站建设、成都网站制作、网页设计、企业做网站、公司建网站等业务。立足成都服务双鸭山,十载网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18982081108
stdio.h
void
main()
{
int
max(int
*p1,int
*p2);
int
a,b,c;
int
*p1,*p2,*p3;
scanf("%d
%d",a,b);
p1=a;
p2=b;
p3=c;
if(ab)
/*这样其实只能比较一开始输入的第一个值大于第二个值。。*/
{
/*注意加了挂号*/
max(p1,p2);
c=max(p1,p2);
/*原先没有进行比较,c总是等于第一个数*/
}
printf("%d",*p3);
}
int
max(int
*p1,int
*p2)
{
int
temp;
temp=*p1;
return(temp);
}
*/
#include
stdio.h
void
main()
{
int
max(int
*p1,int
*p2);
int
a,b,c;
int
*p1,*p2,*p3;
scanf("%d
%d",a,b);
p1=a;
p2=b;
p3=c;
if(ab)
/*当输入第一个值小于第二个输入的值时*/
c=max(p1,p2);
else
c=b;
printf("%d",*p3);
}
int
max(int
*p1,int
*p2)
{
int
temp;
temp=*p1;
return
temp;
}
#include stdio.h
// 返回x, y中较大者
int max(int x, int y)
{
return x y ? x : y;
}
int main()
{
int a, b;
printf("input two number:");
scanf("%d %d", a, b);
printf("max = %d", max(a, b));
return 0;
}
#includestring.h
int strcmp(const char *s1,const char * s2);
原型:extern int strcmp(const char *s1,const char * s2);
所在头文件:string.h
功能:比较字符串s1和s2。
一般形式:strcmp(字符串1,字符串2)
说明:
当s1s2时,返回为负数
当s1=s2时,返回值= 0
当s1s2时,返回正数
#include stdio.h
int strcmp(char *s1, char *s2)
{
while((*s1++ == *s2++) *s1);
return (*s1 - *s2);
}
void main()
{
char a[10], b[10];
gets(a);
gets(b);
printf("%d\n", strcmp(a, b));
}