From de80ed0dba9bb6347d6e5062eadb3f9e3855769c Mon Sep 17 00:00:00 2001 From: Anthony Debucquoy Date: Sun, 23 Mar 2025 00:08:42 +0100 Subject: [PATCH] =?UTF-8?q?division=20enti=C3=A8res?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/arithmetic.spf | 8 +++++++- spf.py | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/examples/arithmetic.spf b/examples/arithmetic.spf index f4aa599..9d793a2 100644 --- a/examples/arithmetic.spf +++ b/examples/arithmetic.spf @@ -7,6 +7,12 @@ ajouter 3 dans l; afficher l; +entier x = 3; + +entier y = 4; + +entier z = x + 3 * y + 6 / 3; + # # afficher x vaut y; # afficher x ne vaut pas y; @@ -19,7 +25,7 @@ afficher l; # entier x = 2 + 3 * 4; # entier y = 3 * 4 + 2; -liste l = [1, 2, 3]; +# liste l = [1, 2, 3]; afficher l[2]; diff --git a/spf.py b/spf.py index 903b2d3..03418c9 100755 --- a/spf.py +++ b/spf.py @@ -99,8 +99,8 @@ class SPFInterpreter(lark.visitors.Interpreter): return result[0] if result[1][0].type == "TIMES_OP": return result[0] * result[1][1] - elif result[1][0].type == "DIVIDE_OP": - return result[0] / result[1][1] + elif result[1][0].type == "DIVIDE_OP": # Division entière car nous ne gérons pas les flotants + return result[0] // result[1][1] assert "Unreachable" def priority(self, el):