package com.ttest2;
class test {
public int GetWeek(int y, int m, int d) {
if (m < 3) {
m += 12;
--y;
}
int w = (d + 1 + 2 * m + 3 * (m + 1) / 5 + y + (y >> 2) - y / 100 + y / 400) % 7;
return w;
}
}
public class Demo2 {
public static void main(String[] args) {
test t = new test();
System.out.println(t.GetWeek(2016, 6, 3));
}
}
时间: 2024-10-07 20:29:24