澤勒一致性演算法---學習筆記
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)符號筆記符號
- 演算法學習筆記演算法筆記
- LMF演算法學習筆記演算法筆記
- 機器學習演算法學習筆記機器學習演算法筆記
- 匈牙利演算法學習筆記演算法筆記
- 學習筆記----KM演算法筆記演算法
- 學習筆記----RMQ演算法筆記MQ演算法
- EM演算法學習筆記演算法筆記
- Floyd演算法學習筆記演算法筆記
- Tarjan 演算法學習筆記演算法筆記
- ZooKeeper一致性協議ZAB學習筆記協議筆記
- 演算法學習筆記:Kosaraju演算法演算法筆記
- 類歐幾里得演算法學習筆記演算法筆記
- 《演算法導論》學習筆記演算法筆記
- 莫隊演算法學習筆記演算法筆記
- 演算法學習筆記(3.1): ST演算法演算法筆記
- 演算法學習筆記(1)- 演算法概述演算法筆記
- 演算法學習筆記:2-SAT演算法筆記
- 智慧演算法學習筆記(一) (轉)演算法筆記
- [演算法學習筆記] 並查集演算法筆記並查集
- 演算法學習筆記(40): 具體數學演算法筆記
- numpy的學習筆記\pandas學習筆記筆記
- 【演算法學習筆記】概率與期望DP演算法筆記
- 【演算法學習筆記】快速傅立葉變換演算法筆記
- 統計學習方法筆記-EM演算法筆記演算法
- 學習筆記----快速冪取模演算法筆記演算法
- 演算法學習筆記(23):杜教篩演算法筆記
- 強化學習筆記之【SAC演算法】強化學習筆記演算法
- [演算法學習筆記] 差分約束演算法筆記
- 演算法學習筆記(18):珂朵莉樹演算法筆記
- 強化學習演算法筆記之【DDPG演算法】強化學習演算法筆記
- IT學習筆記筆記
- 學習筆記筆記
- 演算法學習筆記(16): 組合數學基礎演算法筆記
- 【演算法學習筆記】篩法(演算法翻譯類)演算法筆記
- 普通平衡樹學習筆記之Splay演算法筆記演算法
- 【演算法學習筆記】生成樹問題探究演算法筆記
- 【演算法學習筆記】淺談懸線法演算法筆記