Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Lab 3 - Loops, Strings, and Arrays Exercise 1 Create a file named A3.java. Place all your code this file. Create a method with the

image text in transcribed

Lab 3 - Loops, Strings, and Arrays Exercise 1 Create a file named A3.java. Place all your code this file. Create a method with the following header: public static boolean endOther(String a, String b) Define it as follows: Given two strings, return true if either of the strings appears at the very end of the other string, ignoring upper/lower case differences in other words, the computation should not be "case sensitive"). Note: str.to LowerCase() returns the lowercase version of a string. endOther("Hiabc", "abc") true endOther("AbC", "HiaBc") true endOther("abc", "abXabc") true Exercise 2 Create a method with the following header: public static int sum13(int[] nums) Define it as follows: Return the sum of the numbers in the array, returning 0 for an empty array. Except the number 13 is very unlucky, so it does not count and numbers that come immediately after a 13 also do not count. sum13([1, 2, 2, 1]) 6 sum13([1,1]) 2 sum13([1, 2, 2, 1, 13]) 6

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Graph Databases In Action

Authors: Dave Bechberger, Josh Perryman

1st Edition

1617296376, 978-1617296376

More Books

Students also viewed these Databases questions

Question

In a regression problem, n = 30, x;- 15, y; = 30, = 30, = 10,

Answered: 1 week ago

Question

1. What are the peculiarities of viruses ?

Answered: 1 week ago

Question

Describe the menstrual cycle in a woman.

Answered: 1 week ago

Question

=+With whom does the firm have to negotiate?

Answered: 1 week ago

Question

=+Are there shop stewards?

Answered: 1 week ago