Skip to content

Commit

Permalink
Merge pull request #3 from BlazeSnow/dev
Browse files Browse the repository at this point in the history
v1.1.1
  • Loading branch information
BlazeSnow authored Jul 27, 2024
2 parents 41b3963 + 579ad28 commit 9144aa2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@

## 更新日志

### v1.1.1

2024年7月27日17点58分

- 修复了某位置有棋子时,输出的位置代号少1的问题

### v1.1.0

2024年7月27日17点51分
Expand Down
4 changes: 2 additions & 2 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void BlazeSnow_copyright_print()
{
cout << "Copyright (C) 2024 BlazeSnow.保留所有权利。" << endl;
cout << "本程序以GNU General Public License v3.0的条款发布。" << endl;
cout << "当前程序版本号:v1.1.0" << endl;
cout << "当前程序版本号:v1.1.1" << endl;
cout << "https://github.com/BlazeSnow/Tic-Tac-Toe" << endl
<< endl;
}
Expand Down Expand Up @@ -149,7 +149,7 @@ void input()
}
else if (jing[temp] == 1 || jing[temp] == 2)
{
cout << temp << "号位置有" << pring_jing_words(jing[temp]) << "" << endl;
cout << temp + 1 << "号位置有" << pring_jing_words(jing[temp]) << "" << endl;
}
}
}
Expand Down

0 comments on commit 9144aa2

Please sign in to comment.