牛牛是一个喜欢计算的聪明牛。他想编写一个程序来计算两个日期之间的天数差。 给定两个日期,以字符串形式表示,格式为 YYYY-MM-DD,如示例所示。 请你编写一个程序,计算两个日期之间的天数差。
示例1
输入
"2022-01-01","2022-12-31"
输出
364
示例2
输入
"2023-06-29","2023-06-30"
输出
1
备注:
给定的日期在 1971 年至 2100 年之间。
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ public int calculateDateDifference (String date1, String date2) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ int calculateDateDifference(string date1, string date2) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param date1 string字符串 # @param date2 string字符串 # @return int整型 # class Solution: def calculateDateDifference(self , date1 , date2 ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ public int calculateDateDifference (string date1, string date2) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ function calculateDateDifference( date1 , date2 ) { // write code here } module.exports = { calculateDateDifference : calculateDateDifference };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param date1 string字符串 # @param date2 string字符串 # @return int整型 # class Solution: def calculateDateDifference(self , date1: str, date2: str) -> int: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ func calculateDateDifference( date1 string , date2 string ) int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ int calculateDateDifference(char* date1, char* date2 ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param date1 string字符串 # @param date2 string字符串 # @return int整型 # class Solution def calculateDateDifference(date1, date2) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ def calculateDateDifference(date1: String,date2: String): Int = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ fun calculateDateDifference(date1: String,date2: String): Int { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ public int calculateDateDifference (String date1, String date2) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ export function calculateDateDifference(date1: string, date2: string): number { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ func calculateDateDifference ( _ date1: String, _ date2: String) -> Int { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param date1 string字符串 * @param date2 string字符串 * @return int整型 */ pub fn calculateDateDifference(&self, date1: String, date2: String) -> i32 { // write code here } }
"2022-01-01","2022-12-31"
364
"2023-06-29","2023-06-30"
1