#include <stdio.h>int main(){ int b =1; int a = 5; b = ++a*--a; printf("b = %d\n",b); return 0;}这个程序的运行结果是什么,为什么是这个结果,搞不懂
阅读全文
2012
03-23