What should it print ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

What should it print ?

what should it print when the code is print 5*4+3/2-1; in the language of ongoing coding contest "Custom Interpreter" For rules see this https://www.sololearn.com/learn/9298/?ref=app

11th Jun 2018, 1:56 AM
Vishal Pal❄️⚛️
Vishal Pal❄️⚛️ - avatar
7 Answers
+ 5
The requirements specifications did not touch on operator precedence, but I believe it would be a delighter for your interpreter to be able to calculate the statement according to proper norms, 5*4+3/2-1 (5*4)+(3/2)-1 From the syntax, the fictional language appears to be dynamically-typed. I'm assuming that the division between two integer values would result in an integer result, while the case where either or both parameters are floating-point values, would result in a floating-point value result. (5*4)+(3/2)-1 20+1-1 20 Of course, both of the above appears to be beyond the scope of this assignment.
11th Jun 2018, 2:10 AM
Hatsy Rei
Hatsy Rei - avatar
+ 4
If I were to judge, both are acceptable. 20.5 is obtained by carrying out floating-point operation when given two integer values as operands. This isn't wrong. Python, for instance, does that. While 10 is a bit unorthodox, we were not told/required to develop a language with operator precedence, and hence should not be disqualified as well.
11th Jun 2018, 2:19 AM
Hatsy Rei
Hatsy Rei - avatar
+ 4
Thanks Hatsy Rei
11th Jun 2018, 2:21 AM
Vishal Pal❄️⚛️
Vishal Pal❄️⚛️ - avatar
+ 4
I'd say it's (5*4)+(3/2)-1 20+(3/2)-1 20+1.5-1 21.5-1 20.5 Makes more sense to me to make every number a float because the language doesn't offer explicit type casting.
11th Jun 2018, 10:24 AM
Timon Paßlick
+ 3
Hatsy Rei what if interpreter is showing 20.5 or 10?
11th Jun 2018, 2:15 AM
Vishal Pal❄️⚛️
Vishal Pal❄️⚛️ - avatar
+ 3
5*4+3/2-1 = (5*4)+(3/2)-1 = 20+1-1 =20. Note that 3/2 = 1, but 3.0/2.0=1.5
11th Jun 2018, 4:42 AM
Dragon Slayer Xavier
Dragon Slayer Xavier - avatar
0
20.5
11th Jun 2018, 2:08 AM
Pulkit Kamboj
Pulkit Kamboj - avatar