
 
 
#include <iostream>
using namespace std;
void function( )
{
     static int a = 3 ;  //  不赋值的话是 a 等于0;
     
     cout<<"a="<<a<<endl;
     a=a+3;
     cout<<"a="<<a<<endl;
     
}
int main(int argc, char** argv) {
	
	cout<<"Hello world"<<endl;
	function();
	cout<<"Hello world111"<<endl;
	function();
	return 0;
} 
                

















