gpt4 book ai didi

c++ - 将今天的日期变成变量

转载 作者:太空宇宙 更新时间:2023-11-04 12:49:11 25 4
gpt4 key购买 nike

我有那个 C++ 项目。我想获取今天的日期以将其与我文件中保存的日期进行比较。我已经搜索过,但我发现我可以在控制台上输出它,但这不是我想要的。可能吗?

#include <iostream>
#include <cmath>
#include <string>
#include <chrono>
#include <ctime>
using namespace std;
static double interset = .05;
class Account{
public:
string ID;
double Balance;
void Deposit(double bal){
Balance += bal;
}
void Withdraw(double bal){
if (bal > Balance){
cout << "Please check the entered amount" << endl;
}
else{
Balance -= bal;
}
}
void BalanceInqu(){
cout << "Your Current Balance Is\t" << Balance << endl;
}
};

class SavingAccount : public Account{
public:
void intersetRate(){
\\i want to put here a function that calculates the interest rate of an client depending on his account creation date
}
};

编辑:我想获取日期并将其存储到变量中并与其他日期进行比较

最佳答案

如果您现在有日期或时间,则只需减去开始时间并将结果转换为天数(如果情况尚未如此)。所以这意味着您不需要获取今天的实际日期。

time_since_epoch 就足够了,因为您只想知道 2 个时间戳之间的差异。

关于c++ - 将今天的日期变成变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49867281/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com