This commit is contained in:
2025-02-05 07:54:41 +03:00
parent 4e7fa1b23f
commit 0b7e3b6cb0
6 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#include <stdio.h>
int main(void) {
for(int x = 1; x <= 13; x += 2) {
printf("%d\t",x);
}
puts("");
for(int x = 2; x <= 17; x += 3) {
printf("%d\t",x);
}
puts("");
for(int x = 30; x >= -30; x -= 10) {
printf("%d\t",x);
}
puts("");
for(int x = 15; x <= 55; x += 8) {
printf("%d\t",x);
}
puts("");
return 0;
}