0
public class Course {

    public static void main(String[]args) {
        String name="",course="",marks="";
        System.out.println("Enter the name");
        name=System.console().readLine();
        System.out.println("Enter the course");
        course=System.console().readLine();
        System.out.println("Enter the marks");
        marks=System.console().readLine();
        System.out.println("the Name is"+name);
    }
}

But it works fine if compiled with cmd

Hovercraft Full Of Eels
  • 283,665
  • 25
  • 256
  • 373

0 Answers0