⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fact2.c

📁 稀疏矩阵、链表、图、队列、二叉树、多叉树、排序、遗传算法等的实现
💻 C
字号:
#include <stdlib.h>#include <stdio.h>static unsigned long count;longfact(int x) {	long accumulator = 1;start:	++count;	/* fact(0) is 1, negative numbers don't make sense so we pretend	 * they're 1. */	if (x < 2)		return accumulator;	/* we multiply the accumulator by our top-level x */	accumulator *= x;	/* and trim x by one */	x = x - 1;	goto start;}intmain(void) {	int i;	long f;	for (i = 1; i < 20; ++i) {		count = 0;		f = fact(i);		printf("fact(%02d) gives %ld after %lu iteration%s.\n",			i, f, count, count == 1 ? "" : "s");	}	return 0;}

⌨️ 快捷键说明

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