1185:一周中的第几天

This commit is contained in:
轩辕龙儿 2022-01-03 23:18:59 +08:00
parent ab4bd4b534
commit 38fb714371
3 changed files with 93 additions and 1 deletions

View File

@ -0,0 +1,58 @@
//给你一个日期请你设计一个算法来判断它是对应一周中的哪一天
//
// 输入为三个整数daymonth 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

View File

@ -0,0 +1,34 @@
<p>给你一个日期,请你设计一个算法来判断它是对应一周中的哪一天。</p>
<p>输入为三个整数:<code>day</code><code>month</code>&nbsp;<code>year</code>,分别表示日、月、年。</p>
<p>您返回的结果必须是这几个值中的一个&nbsp;<code>{&quot;Sunday&quot;, &quot;Monday&quot;, &quot;Tuesday&quot;, &quot;Wednesday&quot;, &quot;Thursday&quot;, &quot;Friday&quot;, &quot;Saturday&quot;}</code></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>day = 31, month = 8, year = 2019
<strong>输出:</strong>&quot;Saturday&quot;
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>day = 18, month = 7, year = 1999
<strong>输出:</strong>&quot;Sunday&quot;
</pre>
<p><strong>示例 3</strong></p>
<pre><strong>输入:</strong>day = 15, month = 8, year = 1993
<strong>输出:</strong>&quot;Sunday&quot;
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li>给出的日期一定是在&nbsp;<code>1971</code>&nbsp;<code>2100</code>&nbsp;年之间的有效日期。</li>
</ul>
<div><div>Related Topics</div><div><li>数学</li></div></div><br><div><li>👍 102</li><li>👎 0</li></div>