answersLogoWhite

0

365 D in a Y

Updated: 4/28/2022
User Avatar

Wiki User

13y ago

Best Answer

365 dookeys in a yard

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: 365 D in a Y
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is 365 d in a y?

365 days in a year.


365 D in a Y 52 W in a Y?

365 Days in a Year52 Weeks in a Year


What is 365 in spanish?

Trecientos sesenta y cinco


How do you spell 365 in spanish?

Trecientos sesenta y cinco.


When was a 365 day calendar first used?

i cant answer it but y isn't there an answer?


What is a d a d d y?

a d a d d y is just a daddy aka a dad, father or papa


How many minutes are there in two years with a leap year?

87,648 hours (10y * 365d/y + 2d) * 24h/d = 87,648h


If x plus 2x is 5 more than y plus 2y then x-y equals?

Call the unknown value of (x - y) d. Then x = y + d; from the problem statement, y + d + 2(y + d) +5 = y + 2y; expanding yields y + d + 2y + 2d + 5 = y + 2y; (y + 2 y) can be subtracted from both sides and terms in d collected to result in 3d + 5 = 0; 3d = -5; d = -5/3.


What is y-d equals cx in Slope-Intercept Form?

y - d = cx so d = - cx + y That is the slope-intercept form in the c-d plane. Slope = -x Intercept = y


What is the coordinates of a point on the y-axis?

In 2-d: (0, y) In 3-d: (0, y, 0) In 4-d: (0, y, 0, 0) and so on.


What are the release dates for Disney 365 - 2006 Ernie D in Lion King on Broadway?

Disney 365 - 2006 Ernie D in Lion King on Broadway was released on: USA: January 2012


How do you write a c plus plus program to calculate number of days between given date's?

#include<stdio.h> #include<conio.h> #include<time.h> time_t time(time_t *t); main() { int y2,m2,d2,y,m,d; time_t t = time(NULL); struct tm tm = *localtime(&t); printf("Time now: %d-%d-%d %d:%d:%d\n", tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour, tm.tm_min, tm.tm_sec); y2=tm.tm_year+1900; m2=tm.tm_mon+1; d2=tm.tm_mday; printf("Enter the Reference Date in DD MM YY format\n"); scanf("%d%d%d",&d,&m,&y); int loop,total_days = 0,days_in_a_year; int day,month,year; int month_days[] = {31,28,31,30,31,30,31,31,30,31,30,31}; printf("\n%d\n%d\n%d\n",(y2-y),(m2-m),(d2-d)); printf("%d",month_days[m]); if(((y2-y)==0&&(m2-m)<1&&(d2<d))(y2<y)(m<1)(m>12)(d<0)(d>month_days[m-1])) { printf("\nInvalid Reference Date\n"); } else { total_days=month_days[m-1]-d; if((m==2)&&((y%4)==0)) total_days+=1; for(int i=m;i<12;i++) { if((y%4==0)&&i==1) total_days+=1; total_days+=month_days[i]; } for(int year=y+1;year<y2;year++) { if(year%4==0) total_days+=366; else total_days+=365; } for(int i=0;i<m2-1;i++) { if((y2%4==0)&&i==1) total_days+=1; total_days+=month_days[i]; } total_days+=d2; if((y2==y)&&(y%4==0)) total_days-=366; if((y2==y)&&(y%4!=0)) total_days-=365; } printf("\nThe date difference is %d\n",total_days); getch(); }