From 9372df36ed7c479da77d4533c70bb0525a0eed7f Mon Sep 17 00:00:00 2001 From: newde Date: Mon, 2 Feb 2026 11:01:38 -0500 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20260202?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 260202 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/260202 b/260202 index 82486bc..8786857 100644 --- a/260202 +++ b/260202 @@ -7,7 +7,7 @@ int main() { for (int i = 1; i <= 9; ++i) { // 内层循环控制每行显示的列数 for (int j = 1; j <= i; ++j) { - // 输出格式:j * i = 结果 + // 输出格式j * i = 结果 // 使用 setw(2) 确保结果占两位,输出更整齐 cout << j << " * " << i << " = " << setw(2) << i * j << " "; }