#include <stdio.h>

int main() {
    int x=1, y=2, z=15; 
    while(y<=z) {
        x=x*y;
        y++;
    }
    printf("N! da 1 a 15 è = %d\n", x);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: