填空题

以下程序的输出结果是
#include<iostream.h>
void fun( )
static int a=0;
a+=2;
cout < < a < < " ";
void main( )
int cc;
for(cc=1;cc<4;cc++)
fun( ) ;
cout < < endl;

【参考答案】

2 4 6