第1个回答 2015-03-04
我写了一下,这本来就是一个很简单的程序,还是给你加了一点注释。如果在看不懂可以追问我.
#include <stdio.h> //包含标准头文件
void compare(int a,int b)
{
if (a > b) { //a 大于 b的情况
printf("%d > %d\n", a, b);
} else if(a == b) { // a 等于 b的情况
printf("%d = %d\n", a, b);
} else { //a 小于 b的情况
printf("%d < %d\n", a, b);
}
}
int main()
{
int a, b;
printf("Please input two number:\n");//打印提示信息,请输入两个数
scanf("%d%d", &a, &b);// 读取a和b
compare(a, b);//调用函数进行比较
return 0;
}
这个版本只能比较一次然后就退出了,还可以做成更好的,如果有需要也可以再继续追问,并说明需求。
希望可以帮助到你,望采纳。
第2个回答 推荐于2018-02-28
#include <stdio.h>//望采纳
void cmp (void);
int main(void)
{
cmp();
return 0;
}
void cmp(void)
{
int a,b;
printf("请输入一个数:");
scanf("%d",&a);
printf("请再次输入一个数:");
scanf("%d",&b);
if (a>b)
{
printf ("%d>%d\n",a,b);
}
else if (a < b)
{
printf ("%d<%d\n",a,b);
}
else
{
printf ("%d=%d\n",a,b);
}
}本回答被网友采纳
第3个回答 2015-03-04
#include "stdio.h"
void bj(int a,int b)
{
if(a>b)
printf("%d>%d",a,b);
else
{
if(a==b)
printf("%d=%d",a,b);
else
printf("%d<%d",a,b);
}
}
int main()
{
int a,b;
printf("Input two data:");
scanf("%d %d",&a,&b);
bj(a,b);
}本回答被网友采纳