comment out debug code

This commit is contained in:
Lily 2025-05-22 17:08:32 +10:00
parent bf9abd0406
commit 2ef7de5617

View file

@ -37,7 +37,7 @@ int main(void) {
float answer; float answer;
// DEBUG // DEBUG
printf("%g, %g and %d\n", num1, num2, type); //printf("%g, %g and %d\n", num1, num2, type);
if (type == 1) { if (type == 1) {
printf ("Add %g and %g\n", num1, num2); printf ("Add %g and %g\n", num1, num2);
@ -69,7 +69,7 @@ int main(void) {
} }
// DEBUG // DEBUG
printf ("Result is %g\n", result); // printf ("Result is %g\n", result);
} }
printf ("Your score is %d!\n", score); printf ("Your score is %d!\n", score);