remove nginx from ubuntu
sudo apt-get remove nginx nginx-common
or
sudo apt-get purge nginx nginx-common
sudo apt-get autoremove
remove nginx from ubuntu
sudo apt-get remove nginx nginx-common
or
sudo apt-get purge nginx nginx-common
sudo apt-get autoremove
leap year algorithm
def isLeapYear (year):
if ((year % 4 == 0) and (year % 100 != 0)) or (year % 400 == 0):
true
else:
false
leap year c program
#include <stdio.h>
int main() {
int year;
printf("Enter a year: ");
scanf("%d", &year);
// leap year if perfectly visible by 400
if (year % 400 == 0) {
printf("%d is a leap year.", year);
}
// not a leap year if visible by 100
// but not divisible by 400
else if (year % 100 == 0) {
printf("%d is not a leap year.", year);
}
// leap year if not divisible by 100
// but divisible by 4
else if (year % 4 == 0) {
printf("%d is a leap year.", year);
}
// all other years are not leap year
else {
printf("%d is not a leap year.", year);
}
return 0;
}
Leap year program
#include <stdio.h>
int main() {
int year;
year = 2016;
if (((year % 4 == 0) && (year % 100!= 0)) || (year%400 == 0))
printf("%d is a leap year", year);
else
printf("%d is not a leap year", year);
return 0;
}
leap year algorithm
if year % 4 == 0:
if year % 100 == 0:
if year % 400 == 0:
print("leap year")
else:
print("not a leap year")
else:
print("leap year")
else:
print("not a leap year")
leap year
I'll simplfy this. Humans cut every year 6 hours short (1/4 of a day[it is
actually less than 1/4 but see below for the rest]).
This means that every 4 years, 24 hours have been lost and to make up for
that, we just add the 24 hours to a much shorter month (like february - 28d)
giving us the 'leap year' and making the year 1 day longer.
This is to keep up with the astronomical years which the western calender
is based off of, in which the terrarial 'lap' of the sun is the equivilant
of 265.24 full rotations of the earth (day/night cycles). The reason we don't
measure individual years in 365.24 earth rotations is because we would end up
having a super long day at the end of the year and then days would end up
being dark or light depending on the year and it would all get in a
big muddle. Instead, we keep the calendar normal and just remove the .24 of
a day off every 3 years, only to add all the lost time together and make
another day every four years (or every leap year). You may have noticed
that 4x0.24 is actually not 100 but 0.96, so surely after 100 years,
we would miss a day? Well actually, in the year 2000, we did still have a leap
year because it is a multiple of 400(a leap century if you will),
but every other 100 years, we do not have an extra day because of that 0.24.
leap year
import calendar
def is_leap(year):
return calendar.isleap(year)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us