definitions.txt文件:
hospital 10 floor
floor 4 wing
wing 2 long_corridor
wing 1 connecting_cor民航管理ridor
long_corridor 21 patient_room
connecting_corridor 5 supply_room
patient_room 2 bed
patient_room 4 outlet
patient_room 1 bathroom
outlet 1 face_plate
outlet 2 socket
bathroom 1 sink
sink 2 small_r历史问答题ubber_washer
sink 1 large_rubber_washer
floor 1 central_lobby
central_lobby 2 couch
central_lob根号三是无理数吗by 1 television
C++代码:
#include <string>#include <iostream>#include <fstream>using namespace std;struct node { string parent;int data;string child;} p[17];int main() { int n = 0;ifstream in("definitions.txt", ios::in);if (!in.is_open()) { cout << "Error: opening file fail" << endl;exit (1);}while (!in.eof() && n < 17) { in >> p[n]. parent >> p[n].data >> p[n].child;n++;}//testfor(n=0; n<17; n++)军工院校 { cout<<p[n]. parent <<" "<<p[n].data<<" "<<p[n].child<<endl;}in.clo();return 0;}
作用:将txt文件中的信息存入结构体数组p[17]中
本文地址:https://blog.csdn.net/a20195778/arti天堂回信观后感cle/details/111027284
本文发布于:2023-04-04 11:29:24,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/57de8366a22eb576c77b91be3c0d803f.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:C++读取txt文件,并将每一行的信息存入结构体数组中.doc
本文 PDF 下载地址:C++读取txt文件,并将每一行的信息存入结构体数组中.pdf
留言与评论(共有 0 条评论) |