Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

package osu.cse 3 2 4 1 . options; import java.util.Scanner; import osu.cse 3 2 4 1 . utilities.Utilities; import osu.cse 3 2 4 1 .

package osu.cse3241.options;
import java.util.Scanner;
import osu.cse3241.utilities.Utilities;
import osu.cse3241.sql.SQL;
import osu.cse3241.GRS;
public class SearchRecordStockCount {
public static void menu(Scanner cin){
Utilities.printDivider();
System.out.print("SEARCH RECORD STOCK COUNT:
"
+ "Input album name (or 'x' to quit): ");
String album_name = cin.nextLine();
if (!"x".equals(album_name) && !album_name.trim().isEmpty()){
searchRecordStockCount();
}
}
/*
* PART SIX:
* Complete the following method and remove its placeholder.
*/
/**
* Search record stock count by album name.
*/
private static void searchRecordStockCount(){
Utilities.placeholder();
/* TODO */
}
}
fill in the todo

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

Database Principles Programming And Performance

Authors: Patrick O'Neil

1st Edition

1558603921, 978-1558603929

More Books

Students also viewed these Databases questions

Question

Are there any questions that you want to ask?

Answered: 1 week ago