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