As a practical joke for your birthday, your best friend gave you some
single-dimensioned arrays, each full of boolean values. She didn’t tell
you how many items are stored in these arrays.
As if that weren't bad enough, your friend told you that each array is
filled almost entirely with false values, except for a small sequence of
consecutive trues contained somewhere in the array.
Overwhelmed by the novelty of all this, you decided (actually, we've
decided for you) to write a Java method named fullOfBool that
accepts an array of boolean values as its only argument, and will print
Ø the location of the first true in the boolean array
Ø the location of the last true in the boolean array
Ø the total number of true values in the string of consecutive
true values.
Your main method should call on fullOfBool using the following
arrays to test it out:
boolean [] test1 = { false, true, true, true} ;
boolean [] test2 = { true} ;
boolean [] test3 = { true, true, true, true, false} ;
public class Bool {
boolean presents = fullOfBool();
boolean surprises = new boolean[presents];
public boolean fullOfBool(boolean[] p)
{
surprises = boolean[] p;
for( int i = 0; i< presents.length ; i++)
{
if(surprises.contains(true));
{
System.out.print(surprises[i]);
}
}
}
}
I have so much done but eclipse is not liking it, anyone could advice how do i solve this question?
Thank u so much..