gpt4 book ai didi

c++ - c++新手被卡住了

转载 作者:行者123 更新时间:2023-11-28 07:12:02 27 4
gpt4 key购买 nike

<分区>

我上周开始学习 C++,我终于学会了足够的知识来尝试自立。猜猜我有什么问题。我试图制作的程序将要求一个已经存在的文件,或者如果找不到该名称则创建一个新文件,并将信息放在文件行中。当您键入 -1 时,您将关闭程序。

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

int main()
{
string x;
string Input;
int line=0;

cout << "Please enter the name of the file with the file type" << endl;
cin >> x;

ofstream SelectedFile;
SelectedFile.open(x);

while(Input != "-1"){
cout << "Enter the content of the " << line <<" line, or type -1 to quit." << endl;
cin >> Input;
line++;
}
SelectedFile.close();
}

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