Posts

Showing posts from October, 2022

LeapYear project

Image
code:- import java.util.Scanner; // save this java file with LeapYear.java public class LeapYear {     public static void main ( String [] args ) {         Scanner sc = new Scanner ( System . in );             System . out . print ( "Enter any year " );             int n = sc . nextInt ();             if (n % 4 == 0 && n % 100 != 0 || n % 400 == 0 ){                 System . out . println ( "This is leap Year" );             }             else {                 System . out . println ( "Its not a leap year" );             }                           System . out . print ( "Enter the year from where you...