Exemplo n.º 1
0
int main(int argc, char **argv)
{
	if (argc == 1)
	{
		std::cout << "No input file given" << std::endl;
		return 0;
	}

	std::ifstream fsInput(argv[1]);
	std::string sLine;
	while (getline(fsInput, sLine))
	{
		if (sLine.empty())
			continue;

		int x, n;
		sscanf(sLine.c_str(), "%d,%d", &x, &n);

		int v = n;
		while (v < x)
			v += n;

		std::cout << v << std::endl;
	}

	fsInput.close();

	return 0;
}
Exemplo n.º 2
0
int main(int argc, char **argv)
{
	if (argc == 1)
	{
		std::cout << "No input file given" << std::endl;
		return 0;
	}

	std::ifstream fsInput(argv[1]);
	fsInput >> std::ws;

	std::string sLine;
	while (getline(fsInput, sLine))
	{
		if (sLine.empty())
			continue;

		// TODO:
	}

	fsInput.close();

	return 0;
}