Fix capitalization
Some checks failed
Create Release on Push / build_and_release_linux (push) Has been cancelled
Create Release on Push / build_and_upload_windows (push) Has been cancelled

This commit is contained in:
lily 2026-01-06 22:09:32 +11:00
parent a01f7a6699
commit 34169274f4
No known key found for this signature in database
GPG key ID: 6A91E98FC1591F03

View file

@ -152,12 +152,12 @@ int main(void) {
if (score >= 1) { if (score >= 1) {
printf ("Great job, %s!\n", username); printf ("Great job, %s!\n", username);
} else { } else {
printf ("try again!, %s.\n", username); printf ("Try again!, %s.\n", username);
} }
if (accuracytype == 1) { if (accuracytype == 1) {
printf ("you got an accuracy of %d%%!\n", (int)accuracy); printf ("You got an accuracy of %d%%!\n", (int)accuracy);
} else { } else {
printf ("you got an accuracy of %g%%!\n", accuracy); printf ("You got an accuracy of %g%%!\n", accuracy);
} }
return 0; return 0;