From 741d4956a0a1c6194e2cce6d6a348d5386c41f20 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 13 Sep 2026 21:39:24 +0300 Subject: [PATCH] Changed the starting point of the accuracy to be 100% --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index e2af0f4..309b839 100644 --- a/main.cpp +++ b/main.cpp @@ -12,7 +12,7 @@ int main(int argc, char *argv[]) std::cout << "Output:\n"; int num = gen.get_next_num(); std::vector correct_guesses; - double accuracy = 1.0; + double accuracy = 100.0; while(num != gen.NO_MORE_NUMBERS) {