Having issues with the add method, here is my testdriver. This is the descriptio
ID: 3691520 • Letter: H
Question
Having issues with the add method, here is my testdriver.
This is the description of what im supposed to do: http://docdro.id/XwSplCa.
////////////////////TESTER/////////////////////////////
import java.util.*; import java.lang.String; public class TestDriver { public static void main(String[] args) { Scanner input = new Scanner(System.in); SymbolTable symbol = new SymbolTable(); int count = 0; while (count < 50) { System.out.println("Enter in a character"); String input2 = input.nextLine(); System.out.println("Enter in a number"); int input1 = input.nextInt(); symbol.add(input2, input1); symbol.display(); count++; } } }
Explanation / Answer
Tell how it went on the comments section, good luck!
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.