#include int main() { int i; int szorzat; for (i=3, szorzat=1; i<=10; i+=3) szorzat*=i; printf("A számok szorzata: %d\n", szorzat); }