Tuesday 5 July 2016


#include<stdio.h>
#include<conio.h>
void main()
{
int days;
printf("Enter The Number Of Days You Are Late To Submit The Book ");
scanf("%d",&days);
if(days<=5)
printf("Your Fine Is 50 Paisa.");
else if(days>=6&&days<=10)
printf("Your Fine Is 1 Rupee.");
if(days>30)
printf("Your Membership Is Cancelled.");


getch();
clrscr();
}

No comments:

Post a Comment