我正在处理工资申请。该应用程序应允许用户从一个帐户(该帐户是文本文件“shop”,其中包含值 1000)中转帐金额。
用户应该能够在不透支帐户的情况下进行尽可能多的转账。每笔交易也应该通过时间戳记录在一个单独的文件中,这是我正在努力解决的问题。
目前使用我使用的代码,时间戳在文件“时间”中创建得很好,除了 1040ED48 出现在时间之前。有人知道为什么吗?此外,每次我进行交易时,“时间”文件都会被新的时间戳覆盖。有没有办法将每个时间戳放在文件中的不同行上,以防止它被完全覆盖?对不起,如果这不清楚。
#include <limits>
#include "stdafx.h"
#include <iostream>
#include <fstream>
#include <ctime>
#include <string>
int read_balance(void);
void write_balance(int balance);
using namespace std;
int _tmain(int argc, _TCHAR* argv[])
{
cout << "How much do you wish to transfer?" << endl;
int amount = 0;
if (std::cin >> amount)
{
std::cout << "Transferred Amount:" << amount << "\n";
int balance = read_balance();
if (amount <= 0)
{
std::cout << "Amount must be positive\n";
}
else if (balance < amount)
{
std::cout << "Insufficient funds\n";
}
else
{
int new_balance = balance - amount;
write_balance(new_balance);
std::cout << "New account balance: " << new_balance << std::endl;
fstream infile;
infile.open("time.txt");
std::time_t result = std::time(nullptr);
std::string timeresult = std::ctime(&result);
infile << std::cout << timeresult << std::endl;
}
}
system("pause");
return 0;
}
int read_balance(void)
{
std::ifstream f;
f.exceptions(std::ios::failbit | std::ios::badbit);
f.open("shop.txt");
int balance;
f >> balance;
f.close();
return balance;
}
void write_balance(int balance)
{
std::ofstream f;
f.exceptions(std::ios::failbit | std::ios::badbit);
f.open("shop.txt");
f << balance;
f.close();
}