Programming Examples
Program to Convert Days into week and days Format
Write a program to input number of days from user and display it, week and days format.
For Example
input is : 20 days
then output is:
2 week and 6 days.
Solution
#include<stdio.h>
int main()
{
int days,week;
printf("Enter the Number of Days ");
scanf("%d",&days);
week=days/7;
days=days%7;
printf("%d week and %d days ",week,days);
return 0;
}
Output