school/for.c

17 lines
260 B
C
Raw Normal View History

2023-12-18 15:36:37 +01:00
//
// Created by bruno on 12/18/23.
//
#include "for.h"
#include "stdio.h"
int for_cyklus(){
int target;
printf("Do akého čísla počítať?");
scanf("%d", &target);
for(int i = 1; i <= target; i++){
printf("%d\n", i);
}
}