Open
BGdaredevil
opened this issue 4 years ago
•
0 comments
Link to the File https://github.com/SoftUni/Programming-Basics-Book-CSharp-EN/edit/master/Content/Chapter-7-1-complex-loops/do-while-loop/examples/example-sum-of-digits.md
Description Non standard symbols in lines 17 to 20
Current (Wrong) Text - n = 5634 🡒 extract 4; sum += 4; n = 563
n = 563 🡒 extract 3; sum += 3; n = 56
n = 56 🡒 extract 6; sum += 6; n = 5
n = 5 🡒 extract 5; sum += 5; n = 0 🡒 end
Corrected (New) Text -- // i assume that this 🡒 is supposed to be an arrow?