Advertisement
Guest User

Untitled

a guest
Oct 12th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<math.h>
  3.  
  4. int main() {
  5.  
  6. printf("A\tB\tpow(A,B)\n");
  7. printf("--- --- ----\n");
  8. for(int i=1;i<=4;i++){
  9. printf("%i\t%i\t%.0f\n",i,i+1,pow(i,i+1));
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement