Can someone please debug my program?
I am trying to make a program in Java, here is the code: public class Program { public String color; public int size; public int age; public void Program(String c, int s, int a){ this.color = c; this.size = s; this.age = a; System.out.println("Color: " + this.color + " Size: " + this.size + " Age: " + this.age); } public static void main(String[] args) { Program take = new Program("Blue", 13, 14); } } --------------------------------------------------------------------------------------------- But, whenever I try to run it, I always get this error: ..\Playground\:9: error: constructor Program in class Program cannot be applied to given types; Program take = new Program("Blue", 13, 14); ^ required: no arguments found: String,int,int reason: actual and formal argument lists differ in length 1 error ---------------------------------------------- PLEASE HELP! Thanks so Much!