Changed the starting point of the accuracy to be 100%

This commit is contained in:
2026-09-13 21:39:24 +03:00
parent bc9575e22f
commit 741d4956a0
+1 -1
View File
@@ -12,7 +12,7 @@ int main(int argc, char *argv[])
std::cout << "Output:\n";
int num = gen.get_next_num();
std::vector<int> correct_guesses;
double accuracy = 1.0;
double accuracy = 100.0;
while(num != gen.NO_MORE_NUMBERS)
{