c++读取data.txt文件并计算 e//data.txt a:12; b:15; 编写程序计算a+b,并输出到另一txt文件中

日期:2016-03-03 10:43:21 人气:1

c++读取data.txt文件并计算 e//data.txt a:12; b:15; 编写程序计算a+b,并输出到另一txt文件中

如下。 #include #include #include int main(){ ifstream in("E:\\data.txt"); string _In_Words; string a_str, b_str; int a; int b; int c; if(!getline(in,_In_Words)) { in.close(); cout << "data file error.." << endl; r
    A+
热门评论