好的,所以我正在尝试将加密文本写入文件。
出于某种原因,我收到了一个未在此范围内声明的编译错误。
这是我的 encryption.cpp 文件:
#include <iostream>
#include <fstream>
#include <string>
class encrypt{
public:
static void cryptText(std::string newpass)
{
int x = newpass.size();
int output[x -1];
for(int i = 0; i <= x -1; i++)
{
output[i] = (int)newpass[i];
std::cout << char(output[i] + x);
//Here I am trying to write output onto the file. For some reason, though,
//I get the error.
myfile.open ("passwords.thaddeus");
myfile << output << std::endl;
myfile.close();
}
std::cout << std::endl;
}
};
我查看了 cplusplus.com 文件中的 Input/Output 文档。我将他们的示例程序复制到 Code::Blocks 中,它运行良好。但是当我尝试它时,我得到了错误。这很奇怪,因为我包括了 .