Aggiunti file già presenti nell'HD

This commit is contained in:
2022-12-30 14:55:33 +01:00
parent ca573e7cbe
commit eac302e89b
96 changed files with 25577 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import java.util.Random;
public class DieSimulator {
Random generator;
public DieSimulator() {
generator = new Random();
}
public int tira() {
return generator.nextInt(6) + 1;
}
}