呵呵,楼主板块发错了,这是C++的程序,不过我也很乐意给你解答:
#include <iostream.h>
void main()//主函数
{
int a=5;//定义了a并服了初值5
int b=(++a)+(++a)+(++a);这段你可能看不懂,我调试了一下让你看得更清晰
cout<<"a="<<a<<"b="<<b<<endl;
}

欢迎来到我的博客:http://blog..cn/noisunyuhong

2010-07-22 13:42
2010-07-22 16:58