#include int main() { int i; int szorzat; i=1; szorzat=1; while (i<=10) { szorzat*=i; ++i; } printf("A szamok szorzata: %d\n", szorzat); return 0; }