澤勒一致性演算法---學習筆記
java練習之澤勒一致性演算法
public class Exercise_03_21 {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
// Prompt the user to enter a year, month, and day of the month.
System.out.print("Enter year: (e.g., 2012): ");
int year = input.nextInt();
System.out.print("Enter month: 1-12: ");
int month = input.nextInt();
System.out.print("Enter the day of the month: 1-31: ");
int dayOfMonth = input.nextInt();
// Convert January and February to months 13 and 14 of the previous year
if (month == 1 || month == 2)
{
month = (month == 1) ? 13 : 14;
year--;
}
// Calculate day of the week
int dayOfWeek = (dayOfMonth + (26 * (month + 1)) / 10 + (year % 100)
+ (year % 100) / 4 + (year / 100) / 4 + 5 * (year / 100)) % 7;
// Display reslut
System.out.print("Day of the week is ");
switch(dayOfWeek)
{
case 0: System.out.println("Saturday"); break;
case 1: System.out.println("Sunday"); break;
case 2: System.out.println("Monday"); break;
case 3: System.out.println("Tuesday"); break;
case 4: System.out.println("Wednesday"); break;
case 5: System.out.println("Thursday"); break;
case 6: System.out.println("Friday");
}
}
}
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/70007056/viewspace-2792679/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 學習筆記:勒讓德(Legendre)符號筆記符號
- 演算法學習筆記演算法筆記
- 機器學習演算法學習筆記機器學習演算法筆記
- Floyd演算法學習筆記演算法筆記
- LMF演算法學習筆記演算法筆記
- 匈牙利演算法學習筆記演算法筆記
- Tarjan 演算法學習筆記演算法筆記
- 演算法學習筆記:Kosaraju演算法演算法筆記
- ZooKeeper一致性協議ZAB學習筆記協議筆記
- 莫隊演算法學習筆記演算法筆記
- 演算法學習筆記(3.1): ST演算法演算法筆記
- [演算法學習筆記] 並查集演算法筆記並查集
- 演算法學習筆記:2-SAT演算法筆記
- 機器學習筆記(KNN演算法)機器學習筆記KNN演算法
- 機器學習演算法:Logistic迴歸學習筆記機器學習演算法筆記
- 演算法學習筆記(40): 具體數學演算法筆記
- numpy的學習筆記\pandas學習筆記筆記
- 機器學習學習筆記之——演算法鏈與管道機器學習筆記演算法
- 演算法學習筆記(16):Link Cut Tree演算法筆記
- [演算法學習筆記] 差分約束演算法筆記
- 統計學習方法筆記-EM演算法筆記演算法
- python機器學習筆記:EM演算法Python機器學習筆記演算法
- 強化學習筆記之【SAC演算法】強化學習筆記演算法
- 演算法學習筆記(23):杜教篩演算法筆記
- 【演算法學習筆記】概率與期望DP演算法筆記
- 強化學習演算法筆記之【DDPG演算法】強化學習演算法筆記
- 學習筆記筆記
- 【演算法學習筆記】篩法(演算法翻譯類)演算法筆記
- 類歐幾里得演算法學習筆記演算法筆記
- 演算法學習筆記(18):珂朵莉樹演算法筆記
- 「學習筆記」SPFA 演算法的最佳化筆記演算法
- 普通平衡樹學習筆記之Splay演算法筆記演算法
- 1105學習筆記 陣列的演算法上筆記陣列演算法
- YU_C++演算法學習筆記 · 列舉C++演算法筆記
- KuonjiCat的演算法學習筆記:反悔貪心演算法筆記
- 小林coding學習筆記(程序排程演算法)筆記演算法
- 機器學習筆記(1): 梯度下降演算法機器學習筆記梯度演算法
- 資料結構學習筆記-佛洛依德演算法資料結構筆記演算法