Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Anthony g #1

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
83 changes: 83 additions & 0 deletions Die.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
import java.util.ArrayList;
import java.util.List;


public class Die {
int numSides;
boolean lastroll = false;
int x;
List<Integer> l1 = new ArrayList<Integer>();


public Die() {
numSides=6;
}
public Die(int i) {
numSides = i;
}


int roll()
{
int roll;
int max = numSides;
int min =1;
int range = max-min+1;
lastroll = true;

roll = (int)(Math.random() * range) + min;
l1.add(roll);

return roll;
}


int readLastroll() {
if (lastroll == true) {
return l1.get(l1.size() - 1);
}
else {
System.out.println("Roll the Die First");

return -1;
}



}









public static void main(String[] args)
{
Die x = new Die(6);
Die y = new Die(6);
Die z = new Die(6);
System.out.println("Number of Sides: " + x.numSides);
System.out.println("Roll:" + x.roll());
System.out.println("Roll:" + x.roll());
System.out.println("Roll:" + x.roll());
System.out.println("Roll:" + x.roll());
System.out.println("Last Roll: " + x.readLastroll());
int sum;
System.out.println("Rollx:" + x.roll());
System.out.println("Rolly:" + y.roll());
System.out.println("Rollz:" + z.roll());
sum = x.roll() + y.roll() + z.roll();
System.out.println("Sum of three random die is: " + sum);





}



}
27 changes: 27 additions & 0 deletions exercise1.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
public class exercise1 {

public static void main(String[] args)
{
int max = 6;
int min = 1;
int range = max - min + 1;


for (int i = 0; i<=20; i++)
{
int rand = (int)(Math.random() * range) + min;
System.out.println("Roll " + i + " = " + rand);


}




}

}