Advertisement
Avdluna

1795 URI

May 31st, 2015
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.  
  5. int main()
  6. {
  7.     int r,x;
  8.     scanf("%d", &r);
  9.  
  10.     x = pow(3,r);
  11.  
  12.     printf("%d\n", x);
  13.  
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement