help help help nowwww !!! :"(

1. The following formula gives the distance between two points, (x1,y1) and (x2,y2) in the Cartesian
plane:




Given the center and a point on the circle, you can use this formula to find the radius of the circle.
Write a program that prompts the user to enter the center and a point on the circle. The program
should then output the circle’s radius, circumference, and area. Your program must have the
following functions:
 radius(): This function takes as its parameters four number that represent two points in the
plane (center and a point in the circle) and returns the circle’s radius.
 area(): This function takes as its parameter a number that represents the radius of the circle
and returns the circle’s area. (if r is the radius, the area is Πr2
)
.


2. During winter when it is very cold, typically, everyone would like to know the windchill factor,
especially, before going out. Meteorologist use the following formula to compute the windchill
factor, W:
W=35.74+ 0.6215*T - 35.75*V0.16
+ 0.4275*T*V0.16

where V is the wind speed in miles per hour and T is the temperature in degrees Fahrenheit. Write a
program that prompts the user to input V and T. The program then outputs the windchill factor.
Your program must contain at least two void functions one to get the user input and the other to
determine the windchill factor.

can somebody help me solve these qs pllzzzzzzzz !!!
Topic archived. No new replies allowed.