Answered step by step
Verified Expert Solution
Question
1 Approved Answer
wanted user to assign value to the variable mygen in the class . what should do? should i ask for it in the main or
wanted user to assign value to the variable "mygen" in the class . what should do? should i ask for it in the main or with in the class?
public class MySimulation
{
//Declare variables.
private MyOrganism[][] mygrid;
private int mygen;
//Method MySimulation().
public MySimulation(int myrow, int mycolumn)
{
mygrid = new MyOrganism[myrow][mycolumn];
myinitialization();
}
public void myinitialization()
{
mygen = 0;
for (int myrow=0; myrow;>
{
for (int mycolumn=0; mycolumn[myrow].length;>
{
mygrid[myrow][mycolumn] = createOrganisms();
}
}
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started