This commit is contained in:
2025-07-03 12:05:57 +09:00
parent e10edbe753
commit fea9a38b1d
27 changed files with 255 additions and 98 deletions

19
programs/p43/main.c Normal file
View File

@@ -0,0 +1,19 @@
#include <stdio.h>
int main(void) {
int n;
printf("Input positive integer: ");
scanf("%d", &n);
while (n >= 0) {
printf("%d ", n);
n--;
if (n < 0) {
printf("\n");
}
}
return 0;
}