摘要: package mainimport ( "fmt" "strings")func formatDuration(seconds int) string { if seconds == 0 { return "0秒" } var parts []string units := []struct { 阅读全文
posted @ 2025-02-26 13:48 想飞的枫叶 阅读(6) 评论(0) 推荐(0)