#includestring.h

網(wǎng)站建設(shè)公司,為您提供網(wǎng)站建設(shè),網(wǎng)站制作,網(wǎng)頁設(shè)計(jì)及定制網(wǎng)站建設(shè)服務(wù),專注于企業(yè)網(wǎng)站制作,高端網(wǎng)頁制作,對(duì)花箱等多個(gè)行業(yè)擁有豐富的網(wǎng)站建設(shè)經(jīng)驗(yàn)的網(wǎng)站建設(shè)公司。專業(yè)網(wǎng)站設(shè)計(jì),網(wǎng)站優(yōu)化推廣哪家好,專業(yè)成都網(wǎng)站營銷優(yōu)化,H5建站,響應(yīng)式網(wǎng)站。
int
strcmp(const
char
*s1,const
char
*
s2);
原型:extern
int
strcmp(const
char
*s1,const
char
*
s2);
所在頭文件:string.h
功能:比較字符串s1和s2。
一般形式:strcmp(字符串1,字符串2)
說明:
當(dāng)s1s2時(shí),返回為負(fù)數(shù)
當(dāng)s1=s2時(shí),返回值=
當(dāng)s1s2時(shí),返回正數(shù)
用max函數(shù)就行
#include "stdio.h"
int max(int,int);
main()
{
int x,y,z;
printf("input two number:\n");
scanf("%d%d",x,y);
z=max(x,y);
printf("%d",z);
}
int max(int a,int b)
{
if(ab)
return a;
else
return b;
}
如果按你的方法來比較大小,而且是7個(gè)數(shù)字,也就是a~g,你后面少比較了g,而且最后的j也未必是最大,需要改為:
main()
{
int a,b,c,d,e,f,g,h,j;
scanf("%d%d%d%d%d%d%d",a,b,c,d,e,f,g); //這里讀到g即可,后面沒用的
a = max(a,b); //不能把g的值覆蓋了,7個(gè)數(shù),g還有存儲(chǔ)數(shù)據(jù)呢
h = max(c,d);
j = max(e,f);
a = max(a,g); //還要和g比較
h = max(a,h); //接著還要比較a和h誰大
j = max(h,j); //這個(gè)才是最后結(jié)果,最大的一個(gè)
printf("abcdef da shi%d",j);
getch();
}
如果要比較大小的數(shù)比較多,建議使用數(shù)組存儲(chǔ),用個(gè)for循環(huán)就搞定了,如下:
#include stdio.h
void main()
{
int i, a[7], max = -32768;
for (i = 0; i 7; i++)
{
scanf ("%d", a[i]);
if (a[i] max) max = a[i];
}
printf ("max number is %d\n", max);
}
當(dāng)前題目:c語言對(duì)比函數(shù)怎么用 c語言對(duì)比函數(shù)怎么用公式表示
網(wǎng)站網(wǎng)址:http://chinadenli.net/article10/ddodpgo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、微信公眾號(hào)、品牌網(wǎng)站設(shè)計(jì)、商城網(wǎng)站、營銷型網(wǎng)站建設(shè)、網(wǎng)站維護(hù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)