Skip to content
This repository was archived by the owner on Apr 6, 2025. It is now read-only.

Commit 7614c63

Browse files
committed
fix: Sửa lỗi hiển thị
1 parent e3ced2f commit 7614c63

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

EncryptionAlgorithms/src/algorithms/RailFenceCipher_String.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public String decrypt() {
201201

202202
int maximumLastRow = col - ((row * col - originString.length()) % col) - 1;
203203

204-
debug("\nƯớc tính số ký tự hàng cuối: " + maximumLastRow + 1);
204+
debug("\nƯớc tính số ký tự hàng cuối: " + (maximumLastRow + 1));
205205
int countRow = 0;
206206

207207
for (int j = 0; j < col; j++) {

EncryptionAlgorithms/src/gui/SplashLoading.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public SplashLoading() {
2121

2222

2323
initComponents();
24-
jLabel2.setText("Phiên bản: 1.0");
24+
jLabel2.setText("Phiên bản: " + application.InfoSoftware.VERSION);
2525

2626
currentLoadDataString = "Khởi tạo tiến trình";
2727
jProgressBar1.setStringPainted(true);

0 commit comments

Comments
 (0)