1
0
Fork 0

Upload files to 'stuff/01-11-2021'

This commit is contained in:
MGislv 2021-11-01 14:57:05 +00:00
parent fe9fca07ee
commit 044f34cfa8
1 changed files with 16 additions and 0 deletions

16
stuff/01-11-2021/es2.c Normal file
View File

@ -0,0 +1,16 @@
#include <stdio.h>
int main(int ld)
{
int sum = 0;
printf("100");
for (int i = 99; i != -1; i--) {
printf("\n%d", i);
sum += i;
if ((i % 10) == 0)
printf("\nFINE DECINA\n");
}
printf("\nSomma: %d\n", sum + 100);
}