摸索第一篇
Posted 12345-one
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了摸索第一篇相关的知识,希望对你有一定的参考价值。
用函数找较大的值:
//用函数输出两个数中较大的数
#include<stdio.h>
int max(int a,int b);
int main(){
int a,b;
#include<stdio.h>
int max(int a,int b);
int main(){
int a,b;
scanf("%d %d",&a,&b);
printf("较大的那个数是%d",max(a,b));
return 0;
}
return 0;
}
int max(int a,int b){
if(a>b){
return a;
}
else return b;
}
if(a>b){
return a;
}
else return b;
}
直接把比较的数放在函数里面比较
以上是关于摸索第一篇的主要内容,如果未能解决你的问题,请参考以下文章