Library Fine
Library Fine Your local library needs your help! Given the expected and actual return dates for a library book, create a program that calculates the fine (if any). The fee structure is as follows: If the book is returned on or before the expected return date, no fine will be charged (i.e.: . If the book is returned after the expected return day but still within the same calendar month and year as the expected return date, . If the book is returned after the expected return month but still within the same calendar year as the expected return date, the . If the book is returned after the calendar year in which it was expected, there is a fixed fine of . --Solution-- #include<stdio.h> int main() { unsigned int dd1,mm1,yy1; unsigned int dd2,mm2,yy2; int dif=0; scanf("%d%d%d",...
Comments
Post a Comment