brainwash brief civilize coach cultivate develop discipline drill edify enlighten exercise explain foster improve indoctrinate inform instruct mature nurture rear school train tutor objective blessed blest blissful cheerful contented delighted ecstatic elated glad joyful joyous jubilant lively merry overjoyed peaceful pleasant pleased thrilled upbeat import java.util.Scanner; import java.io.FileInputStream; import java.io.IOException; public class LabProgram { public static void main(String[] args) throws IOException { Scanner scnr = new Scanner(System.in); int NUM_CHARACTERS = 26; // Maximum number of letters int MAX_WORDS = 10; // Maximum number of synonyms per starting letter String[][] synonyms = new String[NUM_CHARACTERS][MAX_WORDS]; // Declare 2D array for all synonyms String[] words = new String[MAX_WORDS]; // The words of each input line /* Type your code here. */ } }
brainwash brief
civilize coach cultivate
develop discipline drill
edify enlighten exercise explain
foster
improve indoctrinate inform instruct
mature
nurture
rear
school
train tutor
objective
blessed blest blissful
cheerful contented
delighted
ecstatic elated
glad
joyful joyous jubilant
lively
merry
overjoyed
peaceful pleasant pleased
thrilled
upbeat
import java.util.Scanner;
import java.io.FileInputStream;
import java.io.IOException;
public class LabProgram {
public static void main(String[] args) throws IOException {
Scanner scnr = new Scanner(System.in);
int NUM_CHARACTERS = 26; // Maximum number of letters
int MAX_WORDS = 10; // Maximum number of synonyms per starting letter
String[][] synonyms = new String[NUM_CHARACTERS][MAX_WORDS]; // Declare 2D array for all synonyms
String[] words = new String[MAX_WORDS]; // The words of each input line
/* Type your code here. */
}
}
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images