From d2e4c89fe34b605a6f9dd269f0df69ca15b689db Mon Sep 17 00:00:00 2001 From: Xavier Petit <32063953+xpetit@users.noreply.github.com> Date: Tue, 26 Nov 2019 13:06:08 +0000 Subject: [PATCH] Prettify --- subjects/doop.en.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subjects/doop.en.md b/subjects/doop.en.md index 89773212e..3a1331854 100644 --- a/subjects/doop.en.md +++ b/subjects/doop.en.md @@ -12,13 +12,13 @@ The program has to be used with three arguments: You should use `int64`. -The following operators are considered valid: "+", "-", "/", "*", "%". +The following operators are considered valid: `+`, `-`, `/`, `*`, `%`. In case of an invalid operator the programs prints `0`. In case of an invalid number of arguments the program prints nothing. -In case of overflow the program prints **Overflow**. +In case of overflow the program prints `Overflow`. The program has to handle the modulo and division operations by 0 as shown on the output examples below.