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


Online Exam Quiz for One day Exam Online Typing Test CCC Online Test 2026 Best Computer Training Institute in Prayagraj (Allahabad) Best Java Training Institute in Prayagraj (Allahabad) Best Python Training Institute in Prayagraj (Allahabad) O Level Online Test in Hindi Best Website and Software Company in Allahabad