首页 > 代码库 > 从键盘上输入两个数,按小大的顺序输出
从键盘上输入两个数,按小大的顺序输出
#include <stdio.h>
#include <stdlib.h>
int main()
{
int num1,num2;
int *num1_p=&num1,*num2_p=&num2,*pointer;
printf("Input the first number:");
scanf("%d",num1_p);
printf("Input the second number:");
scanf("%d",num2_p);
printf("num1=%d,num2=%d\n",num1,num2);
if(*num1_p>*num2_p)
{
pointer=num1_p;
num1_p=num2_p;
num2_p=pointer;
}
printf("min=%d,max=%d",*num1_p,*num2_p);
return 0;
}
#include <stdlib.h>
int main()
{
int num1,num2;
int *num1_p=&num1,*num2_p=&num2,*pointer;
printf("Input the first number:");
scanf("%d",num1_p);
printf("Input the second number:");
scanf("%d",num2_p);
printf("num1=%d,num2=%d\n",num1,num2);
if(*num1_p>*num2_p)
{
pointer=num1_p;
num1_p=num2_p;
num2_p=pointer;
}
printf("min=%d,max=%d",*num1_p,*num2_p);
return 0;
}
从键盘上输入两个数,按小大的顺序输出
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。