Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是
cout.put(value);
在 C++ 中将值从文件读取到屏幕是否有效?
假设它value是一种可以由 输出的类型cout,那么
value
cout
cout << value;
应该可以正常工作。
你的问题比较模棱两可。假设您在文件中有一些数据(例如整数),您可以将它们提取到局部变量中并在屏幕上打印出来。
... int k; ifstream i; i.open(yourfilename.txt); k << i; cout << i; ...