Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Working with floats from user input in C
#1
Example:

float radius;
printf("Enter the radius of a circle: ");
scanf("%f", &radius);
float area = 3.14159 * radius * radius;
printf("The area of the circle is: %.2f\n", area);

Explanation:

In this example, we declare a float variable radius to store the user's input.
We prompt the user to enter the radius of a circle using printf().
We use the %f format specifier in scanf() to read a floating-point value from the user and store it in the radius variable.
We calculate the area of the circle using the formula area = π * r^2, where π is approximated as 3.14159.
Finally, we print the calculated area using printf(). The .2 in the format specifier %.2f ensures that the area is displayed with two decimal places.
Also follow me on Youtube for videos about video games:
https://www.youtube.com/channel/UCxfkGVU...2mQ/videos
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  User input and output with double in C Qomplainerz 0 277 07-26-2023, 06:03 PM
Last Post: Qomplainerz
  User input and short int conversion in C Qomplainerz 0 264 07-26-2023, 03:49 PM
Last Post: Qomplainerz
  Working with integers from user input in C Qomplainerz 0 239 07-26-2023, 08:19 AM
Last Post: Qomplainerz
  Working with strings in C Qomplainerz 0 152 07-25-2023, 11:40 AM
Last Post: Qomplainerz

Forum Jump:


Users browsing this thread: 3 Guest(s)