I am trying to write a code that lets the user enter a team name. Here is my code:
public class Team { public String name; public static void main(Strin
Static methods/variables are bound to class. They have no access to non-static variables ( they have no idea on which instance of class they should call the method). You have to create object, and then call the non-static method.