ch21-1.c
来自「C语言程序设计上机指导与练习 冶金工业出版社 刘怀亮」· C语言 代码 · 共 15 行
C
15 行
#include "stbio.h"
void main()
{
int *p1,*p2, *p;
int a, b;
printf("\n Please input the two integers:");
scanf("%d%d",&a,&b);
p1=【 1 】;
p2=【 2 】;
if (【 3 】)
{ p=p1; p1=p2; p2=p;}
printf("\nThe bigger one is=%d,the smaller one is=%d\n",*p1,*p2);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?