Guest User

error

a guest
Jan 22nd, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.29 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <cs50.h>
  3. #include <math.h>
  4.  
  5. int main(void)
  6. {  
  7.     do
  8.     {
  9.         printf("How much is owed?\n");
  10.         printf("$");
  11.         float owed = GetFloat();
  12.     }
  13.     while(owed < 0);
  14.    
  15.     int cents = (int) round(owed * 100);
  16.     printf("%i\n", cents);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment