听说这段代码可以测试你的电脑够不够 豪

请将你的N设置到程序不能跑为止

#include <stdio.h>
void func (int N) {
	if(N) {
		func (N-1);
		printf("%d\n",N);
	}
	return ;
} 
int main ( ) {
	int  N = 4700;
	func(N);
	return 0;
}

猜你喜欢

转载自blog.csdn.net/weixin_44077227/article/details/89462971