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

📄 roll.c

📁 <B>Digital的Unix操作系统VAX 4.2源码</B>
💻 C
字号:
/* ------------------------------------------------------------------ *//* | Copyright Unpublished, MIPS Computer Systems, Inc.  All Rights | *//* | Reserved.  This software contains proprietary and confidential | *//* | information of MIPS and its suppliers.  Use, disclosure or     | *//* | reproduction is prohibited without the prior express written   | *//* | consent of MIPS.                                               | *//* ------------------------------------------------------------------ *//* $Header: roll.c,v 1.2 86/07/24 15:23:31 dce Exp $ */# include	"mille.h"/* *	This routine rolls ndie nside-sided dice. * * @(#)roll.c	1.1 (Berkeley) 4/1/82 * */roll(ndie, nsides)reg int	ndie, nsides; {	reg int			tot;	extern unsigned int	random();	tot = 0;	while (ndie--)		tot += random() % nsides + 1;	return tot;}

⌨️ 快捷键说明

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