填空题 以下程序的输出结果 1
#include<iostream.h>
void main()
{
int a=0
a+=(a=8);
cout<<a;
}
【正确答案】
【答案解析】16