附加_第20章_math.cpp

← 测试总览 · 目录

编译运行:clang++ -std=c++26 -Wall -Wextra -pthread 附加_第20章_math.cpp -o t && ./t(需先 cd 测试/

// 附加文件:第20章测试的 math 实现(单独翻译单元)
int math_add(int a, int b) { return a + b; }
int math_square(int x) { return x * x; }