新手请教,C++文件中有这些东西 A(B(D,E(H(J,K(L,M(,N))))),C(F,G(,I))) 怎样把它读出来,写到一个字符串里

谢谢好心人啦
2024-11-08 09:55:12
推荐回答(3个)
回答(1):

很奇怪 你要输出字符串 不是有人回答了 而且很对啊 难道要一个一个字符?
那就

#include
#include
#include
using namespace std;

int main()
{
FILE *fp;
fp=fopen("eabc.txt","r");
int k=0;
char ss[200];
for(int i=0;;i++)
{
if(feof(fp)) //字符串结尾 跳出循环
break;
else
{
ss[i]=fgetc(fp);
k++; //K个字符
}
}
for(i=0;i {
cout< }
return 0;
}

回答(2):

#include
#include
#include
using namespace std;

int main()
{
ifstream file("e:abc.txt");
string str;
file >> str;
cout << str << endl;
return 0;
}

回答(3):

这里好像用到了数据结构吧?具体我也记不清楚了