// This is the main class Question
public class Question24
{
public static void main(String[] args)
{
Answer a = new Answer(10,"MCQ");
}
}
public class Question24
{
public static void main(String[] args)
{
Answer a = new Answer(10,"MCQ");
}
}
class Answer
{
Answer()
{
System.out.println("You got nothing.");
}
Answer(int marks, String type)
{
this();
System.out.println("You got "+marks+" for an "+ type);
}
}
0 Comments