Untitled

                Never    
Java
       
import java.util.Scanner;

public class main4 {
    public static void main(String[] args) {
//       2.א.9
        Scanner s = new Scanner(System.in);
        System.out.println("please enter 8 digit number");
        int num = s.nextInt();
        System.out.println("the year is:" + num%10000);
        System.out.println("the month is:" + calcmonth(num));
        System.out.println("the day is:" + calcday(num));
    }
//function to get the month from the number - 
    public static int calcmonth(int num){
        int temp,result;
        temp = num/10000;
        result = temp%100;
        return result;
    }
////function to get the day from the number -     
    public static int calcday( int num){
       int result = num/1000000;
        return result;
    }
}

Raw Text