Browse Source

Bereich der Zufallszahl eingrenzen

main
fdai7103 2 years ago
parent
commit
55c2643cf9
  1. BIN
      build/artifacts/release/Paper-Bin.out
  2. BIN
      build/release/Paper-Bin.out
  3. BIN
      build/release/out/c/Paper-Bin.o
  4. 5
      src/Paper-Bin.c

BIN
build/artifacts/release/Paper-Bin.out

BIN
build/release/Paper-Bin.out

BIN
build/release/out/c/Paper-Bin.o

5
src/Paper-Bin.c

@ -49,6 +49,11 @@ void loadLevel() {
case(6): case(6):
tmpX = rand() % 17; tmpX = rand() % 17;
tmpY = rand() % 10; tmpY = rand() % 10;
while (3 >tmpX)
{
tmpX = rand()%17;
}
break; break;

Loading…
Cancel
Save