📄 ch21-1.c
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -