Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.23 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. int main() {
  5.   double b, e;
  6.   printf("Inserire la base: "); scanf("%lf", &b);
  7.   printf("Inserire l'esponente: "); scanf("%lf", &e);
  8.   printf("%f elevato alla %f e' %f\n", b, e, pow(b, e));
  9. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement