我正在创建一个系统,该系统在我的一个文本文件中输出所有注册的学生,例如
123 Michael
412 Voker
512 Karl
143 Riki
我需要使用他们的ID来搜索学生 意味着我需要阅读此注册学生文件。
系统仅询问ID。 例如
Type ID num: 123
输出:
Hello Michael your ID number is 123.
答案 0 :(得分:0)
可能您正在寻找结构或类。 我要说一个学生班。
class Student{
public:
int id;
char *name;
};
Student s;
通过链接[1]了解如何分别从文件读取或向文件写入Student对象。
[1] https://www.geeksforgeeks.org/readwrite-class-objects-fromto-file-c/
答案 1 :(得分:0)
请继续,这里我整理了一个工作示例,涵盖了您发布的所有问题。
以下解决方案虽然以一种非常惯用的KEY
1 101 0.513333
0 0.476970
...
Name: value, Length: 198, dtype: float64
方式编写(该解决方案在为非平凡的容器数据类型(例如{{1} }):
c++
示例输出:
stream_iterators