#include <stdio.h>

int main() {
    float n1,n2,sum;
    printf("float n1\n");
    scanf("%f", & n1);
    printf("float n2\n");
    scanf("%f", & n2);
    sum=n1/n2;
    printf("%f",sum);
}
    

Embed on website

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