Check if a given year is Leap Year | Java

preview_player
Показать описание


More c+ +, Java programs, topics and much more will be uploaded and explained in detail.

Subscribe to my channel so that you do not miss any topic.

My other videos-

Рекомендации по теме
Комментарии
Автор

i'm struggling with java right now. Thank you for clear explanation

janjack
Автор

Keep doing in java.thanks for the fantastic explaination 🔥

rahulneelam
Автор

Great tutorial!! Thanks a lot... Enjoyed learning

nigarjannat
Автор

Yes do make more videos for java and please codingbat also will do sir

momslilprinces
Автор

pls do make more videos of java programs....

keerthi
Автор

anna indha program laa else if(year%4==0) indha contidion kudukamayum irukalam laa?

PreethiRenu
Автор

can u plse the upload the viedo at duplicate chars at string at java

Sikindharbabu
Автор

What about the number which not divisible among the three numbers is 400, 100, 4 example:1771

srikanthyadav
Автор

Anna, convert number to word in java program video okati chey anna, vere channels vi ardamkavatledu

kalamramireddy
Автор

Sir why 1700 is not a leap year, 1700 is divisible by 4

shilpiarya____
Автор

your code is wrong give input 2009 and tell me the output

priyaghosh
Автор

anna please every video ki subtitles add chey

shireeshaekula
Автор

can't we do
if(year%400==0 && year%4==0){
sop("Leap year");
}
else{
sop("Not a leap year")
}

zainulkhan
Автор

we can directly take 4 right....
I mean
if (num%4==0)
{
S.o.p(num +" is leap year");
}
if else(num%4!=0)
{
S.o.p(num +" is not a leap year");
}
.
....this is simple right!!!!

prathapdugasani
Автор

it should be like this if ((year % 400 == 0) || ((year % 4 == 0) && (year % 100 != 0))) {
System.out.println(year + " is a leap year");
} else {
System.out.println(year + " is not a leap year");
}

priyaghosh
Автор

anna indha program laa else if(year%4==0) indha contidion kudukamayum irukalam laa?

PreethiRenu