算法练习9.18

洛谷1425

#include
#include
int main(void)
{
	int a, b, c, d, e, f;

	std::cin >> a >> b >> c >> d;

	e = (c * 60 + d - a * 60 - b) / 60;
	f = (c * 60 + d - a * 60 - b) % 60;

	std::cout << e <<" "<< f << std::endl;

	system("pause");

	return 0;
}

入门难度。

第一次提交wa,原因是忽略了输出中的间隔  <<" "<<。

你可能感兴趣的:(算法练习9.18)