package myjavase;

import java.util.Scanner;


public class q3 {

public static void main(String[] args){

                Scanner inputday = new Scanner(System.in);

System.out.println("请输入要查询的日期:");

int q = inputday.nextInt();

int h;

h = (q + (26 * (m + 1)) / 10 + k + (k / 4) + (j / 4) + 5 * j) % 7 ;

if(h >= 0 && h < 7){

switch(h){

case 1:

System.out.println(year + " 年 " + m + " 月 " + q + " 日是星期日。");

break;

case 2:

System.out.println(year + " 年 " + m + " 月 " + q + " 日是星期一。");

break;

case 3:

System.out.println(year + " 年 " + m + " 月 " + q + " 日是星期二。");

break;

case 4:

System.out.println(year + " 年 " + m + " 月 " + q + " 日是星期三。");

break;

case 5:

System.out.println(year + " 年 " + m + " 月 " + q + " 日是星期四。");

break;

case 6:

System.out.println(year + " 年 " + m + " 月 " + q + " 日是星期五。");

break;

default:

System.out.println(year + " 年 " + m + " 月 " + q + " 日是星期六。");

break;

}

 }

inputyear.close();

inputmonth.close();

inputday.close();

     }

}