#include <stdio.h>
#include <stdlib.h>
int main()
{
int x=32,y=81,p,q;
p=x++;
q=--y;
printf("%d%d\n",p,q);
printf("%d%d\n",x,y);
return 0;
}
知识点
1。增1和减1的运用
#include <stdio.h>
#include <stdlib.h>
int main()
{
int x=32,y=81,p,q;
p=x++;
q=--y;
printf("%d%d\n",p,q);
printf("%d%d\n",x,y);
return 0;
}
知识点
1。增1和减1的运用