j

Monday, 2 November 2015

Write a program that take user age in days and then convert it into years, month, weeks, hours, minutes and seconds



#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int year,days,month,weeks;
long int hr,min,sec;
cout<<"Enter your age in days ::";
cin>>days;
year=days/365;
month=days/30;
weeks=days/7;
hr=days*24;
min=hr*60;
sec=min*60;
cout<<"Your age in year is "<<year<<endl;
cout<<"Your age in month is "<<month<<endl;
cout<<"Your age in weeks is "<<weeks<<endl;
cout<<"Your age in hours is "<<hr<<endl;
cout<<"Your age in min is "<<min<<endl;
cout<<"Your age in second is "<<sec<<endl;
getch();
}

Subscribe to this Blog via Email :