mirror of
https://github.com/Soccera1/agg.git
synced 2026-02-04 04:03:40 +01:00
Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
826cda95f0 | ||
|
|
e756cede3a | ||
|
|
34169274f4 |
2 changed files with 8 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -1,3 +1,4 @@
|
||||||
src/agg
|
src/agg
|
||||||
bin
|
bin
|
||||||
obj
|
obj
|
||||||
|
AGENTS.md
|
||||||
|
|
|
||||||
10
src/agg.c
10
src/agg.c
|
|
@ -85,6 +85,10 @@ int main(void) {
|
||||||
int playtime;
|
int playtime;
|
||||||
printf ("\nHow long would you like to play for? Answer in seconds.\n");
|
printf ("\nHow long would you like to play for? Answer in seconds.\n");
|
||||||
scanf ("%d", &playtime);
|
scanf ("%d", &playtime);
|
||||||
|
if (playtime < 1) {
|
||||||
|
printf ("Error! You must select at least one second.\n");
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
|
|
||||||
int number_length;
|
int number_length;
|
||||||
printf ("Please enter maximum possible number\n");
|
printf ("Please enter maximum possible number\n");
|
||||||
|
|
@ -152,12 +156,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;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue