[Solved] How do I make a class with the following requirements? [closed]


You must have a main method to put your code in. Like this:

public class Character
    public static void main(String[] args) {
        System.out.println("Enter your new character's name.");
        System.out.println("\t");
        new Character(input.nextLine());
    }

    public Character(String name) {
        this.name = name;
    }

    String name;
    int level = 1;
    int XP = 0;
    int maxHP = 20;
    int HP = maxHP;
    int gold = 100;
    int potions = 0;
}

The comments suggested many other improvements, which are here too.

7

solved How do I make a class with the following requirements? [closed]