1.0アルゴリズムネイティブデバッグ方法


アルゴリズムのネイティブデバッグ方法:
ローカルファイルからテストデータを読み込み、アルゴリズムデバッグを行います.
例:2つの数、出力、およびを読み込みます.
1 2
11 22
111 222
出力:
3
33
333
#include <fstream> //            。     ,   ,      
#include <iostream>
using namespace std;

int main()
{
	ifstream cin("test.txt"); // cin     test.txt。     ,   ,      
	int a, b;
	while (cin >> a >> b)
		cout << a + b << endl;
	system("pause"); //     ,   ,      
	return 0;
}

ifstreamオブジェクトcinはtestを読み出す.txtのデータは、スペースやリターンが無視されます.