Advertisement
Guest User

problema 3.2

a guest
Oct 17th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.22 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.  
  5. int main()
  6. {
  7.     double x, y, z;
  8.     scanf("%lf", &x);
  9.     scanf("%lf", &y);
  10.     z = pow(x, y);
  11.     printf("%2f**%2f=%4f\n", x, y, z);
  12.     return 0;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement