-3

I am getting the error, "Cannot find symbol class keyboard reader." What am I doing wrong?

import java.util.Scanner;
public class Looping 
{
public static void main(String[] args) 
{
KeyboardReader reader = new KeyboardReader();
 int choice = 0;

//Menu with options
do {   
System.out.println("Looping Menu");
System.out.println("1. For Loop");
(And so on, with a menu and options that work fine)
}
}
andrewdleach
  • 2,458
  • 2
  • 17
  • 25
J.Doe
  • 1

1 Answers1

-1

You need to import that class before using it.

Andrey Saleba
  • 2,167
  • 4
  • 20
  • 27