test2.c

来自「北京航空航天大学计算机系要求的编译器大作业。大概6000行代码。」· C语言 代码 · 共 14 行

C
14
字号
int test2(int d)
{
	if (d >= 1) test2(d-1);
	else return (0);
	return (0);
}

void main()
{
	int a;
	a = 5 + 3 / (4 * (6 + a));
	a = test2(a);
	printf(a);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?