Math, asked by sheilamariearaujo, 6 months ago

a guy wire is attached to a telephone pole. the distance from the point where the wire touches the ground to the base of the telephone pole is 4 feet less than the length of the wire. how far up the telephone pole is the wire attached if the distance from the ground to where the wire is attached to the pole is 2 feet less than the length of the wire?

Answers

Answered by palakgupta2395
0

Answer:

#include <stdio.h>

int main() {

double num;

printf("Enter a number: ");

scanf("%lf", &num);

if (num <= 0.0) {

if (num == 0.0)

printf("You entered 0.");

else

printf("You entered a negative number.");

} else

printf("You entered a positive number.");

return 0;

}

Similar questions