resubmission

This commit is contained in:
2025-06-30 20:56:18 +09:00
parent 200d0ed8c6
commit dc5faf8c1e
7 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@@ -6,7 +6,7 @@ int main(void) {
printf("Input integer: ");
scanf("%d", &n);
if (n <= 10 && n > 0) {
if (n < 10 && n > 0) {
printf("%d is one digit natural number.\n", n);
} else {
printf("%d is not one digit natural number.\n", n);