Files
CS50---Harvard/src1/calculator7.c
T
2026-05-28 10:16:10 +00:00

17 lines
249 B
C

// Floats
#include <cs50.h>
#include <stdio.h>
int main(void)
{
// Prompt user for x
float x = get_float("What's x? ");
// Prompt user for y
float y = get_float("What's y? ");
// Divide x by y
printf("%.50f\n", x / y);
}