Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <math.h>
- int main()
- {
- float num,eq;
- printf("Entre com o valor de x:\n"); scanf("%f",&num);
- eq = (5*num + 3)/(sqrt(pow(num,2) - 16));
- printf("%f\n",eq);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment