1
0
Fork 0

Add files via upload

This commit is contained in:
MGislv 2020-12-14 09:28:41 +01:00 committed by GitHub
parent 40fb262811
commit d07b27f233
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

14
stuff/interval.c Normal file
View File

@ -0,0 +1,14 @@
#include <stdio.h>
int main()
{
int n;
scanf("%d", &n);
for (; n > 1; n--) {
printf("%d ", n);
}
printf("\n");
}