rust 打印当前时间 let now = time::now(); let f_now = time::strftime("%Y-%m-%dT%H:%M:%S", &now).unwrap(); println!("now: {:?}", f_now);
rust 打印当前时间 let now = time::now(); let f_now = time::strftime("%Y-%m-%dT%H:%M:%S", &now).unwrap(); println!("now: {:?}", f_now);
基于上个失败的点名程序,里面用到了几个函数,整合到一起,实现启动程序随机生成名字和打印当前时间的功能。 68 changes: 68 additions & 0 deletions 68 Six/src/main.rs Original file line numberDiff line numberDiff line change @@ -0,0 +1,68 @@ use chrono::{Local, DateTime}; use rand::{threa...