reto08 fix, ahora puede dar cero

This commit is contained in:
2023-06-23 07:37:06 +02:00
parent b9e4b1f385
commit 05a39284f9

View File

@@ -22,7 +22,8 @@ fn seudorandom() -> u32 {
.unwrap() as u32; .unwrap() as u32;
while now > 100 { while now > 100 {
now = now - 100; println!("{}", now);
now = now - 101;
} }
now now
} }