其他分享
首页 > 其他分享> > C 练习实例41 - static

C 练习实例41 - static

作者:互联网

题目:学习static定义静态变量的用法。

程序分析:无。

程序代码:

#include<iostream>
using namespace std;

void fun()
{
	int i_1 = 0;
	static int i_2 = 0;
	cout << "i_1:" << i_1 << endl;
	cout << "i_2:" << i_2 << endl;
	i_1++;
	i_2++;
}

int main()
{
	for (int i = 0; i < 3; i++)
	{
		fun();
		cout << endl;
	}
	return 0;
}

标签:std,int,namespace,41,实例,static,include,程序代码
来源: https://blog.csdn.net/qq_51701007/article/details/122231469