1185:一周中的第几天
This commit is contained in:
parent
ab4bd4b534
commit
38fb714371
58
src/main/java/leetcode/editor/cn/DayOfTheWeek.java
Normal file
58
src/main/java/leetcode/editor/cn/DayOfTheWeek.java
Normal file
@ -0,0 +1,58 @@
|
||||
//给你一个日期,请你设计一个算法来判断它是对应一周中的哪一天。
|
||||
//
|
||||
// 输入为三个整数:day、month 和 year,分别表示日、月、年。
|
||||
//
|
||||
// 您返回的结果必须是这几个值中的一个 {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",
|
||||
//"Friday", "Saturday"}。
|
||||
//
|
||||
//
|
||||
//
|
||||
// 示例 1:
|
||||
//
|
||||
// 输入:day = 31, month = 8, year = 2019
|
||||
//输出:"Saturday"
|
||||
//
|
||||
//
|
||||
// 示例 2:
|
||||
//
|
||||
// 输入:day = 18, month = 7, year = 1999
|
||||
//输出:"Sunday"
|
||||
//
|
||||
//
|
||||
// 示例 3:
|
||||
//
|
||||
// 输入:day = 15, month = 8, year = 1993
|
||||
//输出:"Sunday"
|
||||
//
|
||||
//
|
||||
//
|
||||
//
|
||||
// 提示:
|
||||
//
|
||||
//
|
||||
// 给出的日期一定是在 1971 到 2100 年之间的有效日期。
|
||||
//
|
||||
// Related Topics 数学 👍 102 👎 0
|
||||
|
||||
package leetcode.editor.cn;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
|
||||
//1185:一周中的第几天
|
||||
class DayOfTheWeek {
|
||||
public static void main(String[] args) {
|
||||
//测试代码
|
||||
Solution solution = new DayOfTheWeek().new Solution();
|
||||
}
|
||||
|
||||
//力扣代码
|
||||
//leetcode submit region begin(Prohibit modification and deletion)
|
||||
class Solution {
|
||||
public String dayOfTheWeek(int day, int month, int year) {
|
||||
return new SimpleDateFormat("EEEE").format(new Date(year - 1900, month - 1, day));
|
||||
}
|
||||
}
|
||||
//leetcode submit region end(Prohibit modification and deletion)
|
||||
|
||||
}
|
File diff suppressed because one or more lines are too long
34
src/main/java/leetcode/editor/cn/doc/content/DayOfTheWeek.md
Normal file
34
src/main/java/leetcode/editor/cn/doc/content/DayOfTheWeek.md
Normal file
@ -0,0 +1,34 @@
|
||||
<p>给你一个日期,请你设计一个算法来判断它是对应一周中的哪一天。</p>
|
||||
|
||||
<p>输入为三个整数:<code>day</code>、<code>month</code> 和 <code>year</code>,分别表示日、月、年。</p>
|
||||
|
||||
<p>您返回的结果必须是这几个值中的一个 <code>{"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}</code>。</p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>示例 1:</strong></p>
|
||||
|
||||
<pre><strong>输入:</strong>day = 31, month = 8, year = 2019
|
||||
<strong>输出:</strong>"Saturday"
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 2:</strong></p>
|
||||
|
||||
<pre><strong>输入:</strong>day = 18, month = 7, year = 1999
|
||||
<strong>输出:</strong>"Sunday"
|
||||
</pre>
|
||||
|
||||
<p><strong>示例 3:</strong></p>
|
||||
|
||||
<pre><strong>输入:</strong>day = 15, month = 8, year = 1993
|
||||
<strong>输出:</strong>"Sunday"
|
||||
</pre>
|
||||
|
||||
<p> </p>
|
||||
|
||||
<p><strong>提示:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>给出的日期一定是在 <code>1971</code> 到 <code>2100</code> 年之间的有效日期。</li>
|
||||
</ul>
|
||||
<div><div>Related Topics</div><div><li>数学</li></div></div><br><div><li>👍 102</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user