Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. #include <cs50.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <math.h>
  5. #include <stdio.h>
  6.  
  7.  
  8. int main(void){
  9.     int n = 8;
  10.     int f = 27.5 * pow(2, n);
  11.     printf("%i\n", f);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement