pleaae help with these two... QUESTION 12 Create a class called Fish with the fo
ID: 3722446 • Letter: P
Question
pleaae help with these two...
Explanation / Answer
If you post more than 1 question, as per chegg guidelines I have to solve only 1 question.
Ques 13.
public int arraySize( int[] arr )
{
// if the array contains no element
if( arr.length == 0 )
System.out.println("Array is Empty.");
else if( arr.length < 20 )
{
int i;
// print the array elements
for( i = 0 ; i < arr.length ; i++ )
System.out.print(arr[i] + " ");
}
// if array contains 20 or more elements
else
System.out.println("Array is too big to print.");
}
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.