Skip to content
View vardhanb4's full-sized avatar
🎃
🎃

Highlights

  • Pro

Block or report vardhanb4

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
vardhanb4/README.md

import java.util.Scanner;

public class LeapYear { public static void main(String args[]) { Scanner reader = new Scanner(System.in); System.out.print("Enter the Year = "); int year = reader.nextInt(); if (year % 400 == 0) { System.out.print("\nEntered year is a Leap Year."); } else if (year %4 == 0 && year %100 !=0) { System.out.print("\nEntered year is a Leap Year"); } else { System.out.print("\nEntered year is not a Leap Year."); } }

}

Popular repositories Loading

  1. vardhanb4 vardhanb4 Public

    Config files for my GitHub profile.

  2. java-programs java-programs Public

    Java

  3. Java-Programs-1 Java-Programs-1 Public

    Forked from SaketJNU/Java-Programs

    Java code for fundamental programs for students

    Java

  4. optifyx optifyx Public

    for python projects

  5. job-recommendation-model job-recommendation-model Public

    Forked from nikhilj4/job-recommendation-model

    The proposed solution is an AI-powered job recommendation system that analyzes a user’s experience level, skills, and industry preference to predict suitable job attributes such as expected salary,…

    Jupyter Notebook