Guest User

Untitled

a guest
Oct 24th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. int _tmain(int argc, _TCHAR* argv[])
  2. {
  3. int days;
  4. int weeks;
  5. int totalDays;
  6.  
  7. printf("Please enter the number of days\n");
  8. scanf("%d,&totalDays");
  9.  
  10. weeks = totalDays /7;
  11. days = totalDays %7;
  12.  
  13. printf("Weeks %d\n", weeks);
  14. printf("Days %d\n", days);
  15.  
  16.  
  17.  
  18. return 0;
  19. }
Add Comment
Please, Sign In to add comment