Skip to content

Commit

Permalink
1. 修复现代C++ 题目没有目录的错误,第15题的 # 未进行转义导致
Browse files Browse the repository at this point in the history
2. 修改现代C++题目.tex 说明有15 题
3. 修改第八题,`size_t` -> `std::size_t`
  • Loading branch information
Mq-b committed Feb 4, 2024
1 parent f887189 commit 2e492d8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/PDF版题目与答案/tex/question08.tex
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
gobble=2,
frame=lines,
framesep=2mm]{c++}
template<class Ty,size_t size>
template<class Ty,std::size_t size>
struct array {
Ty* begin() { return arr; };
Ty* end() { return arr + size; };
Expand Down
2 changes: 1 addition & 1 deletion src/PDF版题目与答案/tex/question15.tex
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
日期:2024/1/7 出题人:\href{https://github.com/Matrix-A}{Matrix-A}(\href{https://github.com/Mq-b/Loser-HomeWork/issues/159}{#159})\\
日期:2024/1/7 出题人:\href{https://github.com/Matrix-A}{Matrix-A}(\href{https://github.com/Mq-b/Loser-HomeWork/issues/159}{\#159})\\

\begin{enumerate}
\item 使用\textbf{表达式模板}补全下面的代码,实现表达式计算;
Expand Down
Binary file modified src/PDF版题目与答案/现代C++题目.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/PDF版题目与答案/现代C++题目.tex
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
\tableofcontents
\newpage

暂时只有 13 道题目,并无特别难度,有疑问可看\href{https://www.bilibili.com/video/BV1Zj411r7eP/}{视频教程}或答案解析。
暂时只有 15 道题目,并无特别难度,有疑问可看\href{https://www.bilibili.com/video/BV1Zj411r7eP/}{视频教程}或答案解析。

% 后面写只需要按照下面这两行的形式就行了,一个 section 标题,一个 input 题目

Expand Down

0 comments on commit 2e492d8

Please sign in to comment.