Math, asked by kabirchy35, 6 months ago

1. DRAW ROUGH SKETCHES FOR THE FOLLOWING:
In ΔABC, BE is a median of the triangle.
In ΔPQR, PQ and PR are altitudes of the triangle.
In ΔXYZ, YL is an altitude in the exterior of the triangle.

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