/*#include
成都創(chuàng)新互聯(lián)公司主要從事成都網(wǎng)站建設(shè)、成都網(wǎng)站制作、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)雙鴨山,十載網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):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總是等于第一個數(shù)*/
}
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時,返回為負數(shù)
當s1=s2時,返回值= 0
當s1s2時,返回正數(shù)
#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));
}