http:^^www.cs.cornell.edu^info^courses^current^cs100b^prog4.html

来自「This data set contains WWW-pages collect」· HTML 代码 · 共 47 行

HTML
47
字号
MIME-Version: 1.0
Server: CERN/3.0
Date: Sunday, 24-Nov-96 22:46:48 GMT
Content-Type: text/html
Content-Length: 624
Last-Modified: Friday, 08-Nov-96 16:45:05 GMT

<html><head><title>CS100B Program 4 Solution</title></head><body><h1>CS100B Program 4</h1><h2>Solution</h2><hr>I decided to implement my bigint as<pre>#define DIGITS 512typedef struct {   unsigned short array[DIGITS];   int digits;   } bigint;</pre>I will keep the least significant digit in index 0, and the most significantdigit in (digits-1).<p>The <a href="bigint.c">implementation</a> of my bigint library.<p>The <a href="p4.c">Sterling's approximation</a> code. Many programs I sawused two loops to determine n!. This was very inefficient; you only need oneloop.<p></body></html>

⌨️ 快捷键说明

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