c语言自定义函数如何比较 c语言自定义比较字符串大小
C语言函数比较大小
代码如下:
成都做网站、成都网站建设、成都外贸网站建设,成都做网站公司-创新互联已向成百上千企业提供了,网站设计,网站制作,网络营销等服务!设计与技术结合,多年网站推广经验,合理的价格为您打造企业品质网站。
#include stdio.h
#include stdlib.h
int max(int a, int b)
{
return a b ? a : b;
}
int main()
{
int i, m, n;
scanf("%d", m);
for (i = 1; i 8; i++) {
scanf("%d", n);
m = max(m, n);
}
printf("最大数:%d\n", m);
system("pause");
return 0;
}
运行结果:
C语言怎么定义一个函数比较两数大小,谢谢了
假定是比较整数
int sortab(int a,int b)
{int c ;
if(ab) c=1;
else if(a==b)c=0;
else c=-1;
return c;
}
给定2数,如果前数大得到1,后数大得到-1,相等得到0
c语言:用自定义函数实现字符串比较!
int cmp_of_str(char *s1, char *s2)
{
while( (*s1 != '\0') (*s1 == *s2) ) //若果字符串没到串尾且字符相等,则继续比较
{
s1++;
s2++;
}
return *s1 - *s2; //等于时返回0,大于返回正差值,小于返回负差值
}
网站栏目:c语言自定义函数如何比较 c语言自定义比较字符串大小
浏览地址:http://scyanting.com/article/dophide.html