madecraft-oop icon indicating copy to clipboard operation
madecraft-oop copied to clipboard

Coding exercises for my LinkedIn course: Java Deep Dive

Results 4 madecraft-oop issues
Sort by recently updated
recently updated
newest added

I'm still pretty new to java so I don't know how to solve simple issues which I'm sure all this is.. https://imgur.com/LceQPu5 Those are the errors I get when I...

class Student { private String name; private int number; private int number2; } // constructor public Student(String name, int number, int number2) { this.name = name; this.number = number; this.number2...