#include <stdio.h> main() { int x=4,y=4; int t=++x||++y; printf("%d %d %d\n",x,y,t); int a=1,b=1; t=--a&&--b; printf("%d %d %d\n",a,b,t); getchar(); }
标签:运算,int,C语言,++,&&,printf From: https://www.cnblogs.com/xkdn/p/16800609.html
#include <stdio.h> main() { int x=4,y=4; int t=++x||++y; printf("%d %d %d\n",x,y,t); int a=1,b=1; t=--a&&--b; printf("%d %d %d\n",a,b,t); getchar(); }
标签:运算,int,C语言,++,&&,printf From: https://www.cnblogs.com/xkdn/p/16800609.html