C++ Primer(第5版) 练习 6.7
练习 6.7 编写一个函数,当它第一次被调用时返回0,以后每次被调用返回值加1。
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
/*************************************************************************> File Name: ex6.7.cpp> Author: > Mail: > Created Time: Tue 13 Feb 2024 09:53:13 AM CST************************************************************************/#include<iostream>
using namespace std;int callBack(){static int count = 0;return count++;
}int main(){for(int i = 0; i < 10; ++i){cout<<callBack()<<endl;}return 0;
}