标签:方法 style bsp line use blog log code stream
代码如下:
#include "stdafx.h" #include<iostream> #include<fstream> #include<cstdlib> //support for exit() #include<string> int main() { using namespace std; ifstream inFile("C:\\Users\\Administrator\\Desktop\\1.txt"); string str; while (inFile.good()) { getline(inFile, str); //该方法来自<string> cout << str << endl; } cout << "hello world"; cin.get(); return 0; }
标签:方法 style bsp line use blog log code stream
原文地址:http://www.cnblogs.com/heben/p/6004727.html