題目:求兩個時間的和,輸入兩個時間(時間的格式為hh:mm:ss,保證輸入都是正確的時間
,所以自己不用檢查輸入的時間正確與否),計算這兩個時間的和並輸出。
例如:輸入
00:00:04 和 00:00:01 最後輸出的時間是00:00:05
考察的知識點:字串的處理
**如下:
// 求兩個時間的和.cpp : 定義控制台應用程式的入口點。
// 求兩個時間的和,輸入兩個時間(時間的格式為hh:mm:ss,保證輸入都是正確的時間
// ,所以自己不用檢查輸入的時間正確與否),計算這兩個時間的和並輸出,例如輸入
// 00:00:04 和 00:00:01 最後輸出的時間是00:00:05
#include "stdafx.h"
#include #include #include //切割時間字串
void split_time(const std::string &time, std::vector&time_vec)
}//不夠兩位補0
void add_zero(int ntime, std::string &time_str)
}//獲取兩個時間的和
void get_time_sum(const std::string &str_a, const std::string &str_b)
add_zero(second, second_str);
if (minute > 60)
add_zero(minute, minute_str);
if (hour > 24)
add_zero(hour, hour_str);
sum = hour_str + ":" + minute_str + ":" + second_str;
std::cout << "the sum of two times is:" << sum << std::endl;
}int _tmain(int argc, _tchar* argv)
求兩個時間的差
直接上 注 中的model.recenttime就是你自己要計算的時間 nsstring newtime model.recenttime substringtoindex 19 取特定的字串與系統給的格式匹配 nslog newtime newtime dateand日曆 nstimezone z...
兩個彙編小程式
開發環境為emu8086!1 begin name run nian project to check if it s run nian.propmt macro ppt 定義輸出巨集 mov dx,offset ppt mov ah,09h int 21h endm stack segment d...
分享兩個小程式
小編也不知道大家能不能用的到,我只是把我學到的知識分享出來,有需要的可以看一下。python本身就是乙個不斷更新改進的語言,不存在抄襲,有需要就可以拿過來用,在用的過程中,你發現可以用另外一種方法把它實現,就可以把 做進一步的優化,然後分享出來,這樣python會變的越來越實用。今天心情不好,分享兩...