Skip to content

Commit

Permalink
deploy: be22d21
Browse files Browse the repository at this point in the history
  • Loading branch information
archibate committed Nov 9, 2024
1 parent cc15160 commit 4c939a7
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cpp_tricks/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@ <h2 id="_3">地板除与天花板除</h2>
<p>等价于</p>
<pre><code class="language-cpp">int c = floor((float)a / b); // c = floor(2.8) = 2
</code></pre>
<p>如果 <code>a</code> 除以 <code>b</code> 除不尽,那么会找到比他大的第一个整数作为结果,这就是<strong>地板除 (floor div)</strong></p>
<p>如果 <code>a</code> 除以 <code>b</code> 除不尽,那么会找到比他小的第一个整数作为结果,这就是<strong>地板除 (floor div)</strong></p>
<p>C 语言默认的就是地板除。</p>
<p>如果我想要的是向上取整,该怎么写?</p>
<p>最原始的写法是先转成浮点数来除,然后ceil函数向上取整:</p>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ <h2 id="_1">前言</h2>
<blockquote>
<p><img src="./img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 本书还在持续更新中……要追番的话,可以在 <a href="https://github.com/parallel101/cppguidebook">GitHub</a> 点一下右上角的 “Watch” 按钮,每当小彭老师提交新 commit,GitHub 会向你发送一封电子邮件,提醒你小彭老师更新了。</p>
</blockquote>
<p>更新时间:2024年11月09日 11:37:54 (UTC+08:00)</p>
<p>更新时间:2024年11月09日 11:39:40 (UTC+08:00)</p>
<p><a href="https://parallel101.github.io/cppguidebook">在 GitHub Pages 浏览本书</a> | <a href="https://142857.red/book">在小彭老师自己维护的镜像上浏览本书</a></p>
<h2 id="_2">格式约定</h2>
<blockquote>
Expand Down
4 changes: 2 additions & 2 deletions print_page/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ <h2 id="index-_1">前言</h2>
<blockquote>
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 本书还在持续更新中……要追番的话,可以在 <a href="https://github.com/parallel101/cppguidebook">GitHub</a> 点一下右上角的 “Watch” 按钮,每当小彭老师提交新 commit,GitHub 会向你发送一封电子邮件,提醒你小彭老师更新了。</p>
</blockquote>
<p>更新时间:2024年11月09日 11:37:54 (UTC+08:00)</p>
<p>更新时间:2024年11月09日 11:39:40 (UTC+08:00)</p>
<p><a href="https://parallel101.github.io/cppguidebook">在 GitHub Pages 浏览本书</a> | <a href="https://142857.red/book">在小彭老师自己维护的镜像上浏览本书</a></p>
<h2 id="index-_2">格式约定</h2>
<blockquote>
Expand Down Expand Up @@ -1241,7 +1241,7 @@ <h2 id="cpp_tricks-_3">地板除与天花板除</h2>
<p>等价于</p>
<pre><code class="language-cpp">int c = floor((float)a / b); // c = floor(2.8) = 2
</code></pre>
<p>如果 <code>a</code> 除以 <code>b</code> 除不尽,那么会找到比他大的第一个整数作为结果,这就是<strong>地板除 (floor div)</strong>。</p>
<p>如果 <code>a</code> 除以 <code>b</code> 除不尽,那么会找到比他小的第一个整数作为结果,这就是<strong>地板除 (floor div)</strong>。</p>
<p>C 语言默认的就是地板除。</p>
<p>如果我想要的是向上取整,该怎么写?</p>
<p>最原始的写法是先转成浮点数来除,然后ceil函数向上取整:</p>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

0 comments on commit 4c939a7

Please sign in to comment.