gpt4 book ai didi

C++ 存储调用 main 的次数

转载 作者:行者123 更新时间:2023-11-28 00:40:07 27 4
gpt4 key购买 nike

<分区>

如何让 main() 在每次调用时记住变量的值?

即如果我第一次运行这个程序我想要 mainCallCounter = 0,但是当我再次被调用时我想要它增加计数器

#include <iostream>   
using namespace std;

static int mainCallCounter = 0;

void outputMainCallCount()
{
cout << "Main was called" << mainCallCounter << "times." << endl;

}

int main()
{

outputMainCallCount();
mainCallCounter++;

return 0;

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com