Skip to content
Snippets Groups Projects

Corrected an error in loop converting decimal to binary.

Closed gaspard.legouic requested to merge (removed):gaspard.legouic-master-patch-83176 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -139,7 +139,7 @@ $$
tant que (N >= 0) {
bit = num / 2^N
num = num % 2^N
N += 1
N -= 1
}
```
Loading