3.1 (2)

来源:互联网 发布:pkpm节能软件 编辑:程序博客网 时间:2024/05/17 23:59
#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;}