From 6b050e47ac03e76d26ed274a1c9e5464dc7286c8 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Thu, 28 May 2020 18:12:53 +0300 Subject: [PATCH] =?utf8?q?=D0=9F=D0=BE=D0=BD=D1=80=D0=B0=D0=B2=D0=B8=D0=BB?= =?utf8?q?=D0=BE=D1=81=D1=8C=20=D0=B8=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=BB?= =?utf8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B1=D0=B0=D0=B3=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit В одной рассылке увидел: > int x, y, sum; // x, y, and sum are integers (numbers) > sum = x - y; // sum up x and y You're being too generous to college trained monkeys (aka "coders" vs. "programmer") they would fix the bug as follows: sum = x - ( -y ); -- 2.50.0