From e15cb202e4b808868d4312353f599426438951ea Mon Sep 17 00:00:00 2001 From: zsq259 <2530059525@qq.com> Date: Tue, 24 Oct 2023 12:04:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E4=BA=86=20int2048.h?= =?UTF-8?q?=20=E4=B8=AD=E7=9A=84=E6=B3=A8=E9=87=8A=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- int2048.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/int2048.h b/int2048.h index a3ac66a..f647f8c 100644 --- a/int2048.h +++ b/int2048.h @@ -39,12 +39,12 @@ public: // 加上一个大整数 int2048 &add(const int2048 &); - // 输出两个大整数之和 + // 返回两个大整数之和 friend int2048 add(int2048, const int2048 &); // 减去一个大整数 int2048 &minus(const int2048 &); - // 输出两个大整数之差 + // 返回两个大整数之差 friend int2048 minus(int2048, const int2048 &); // ===================================