Ticker

6/recent/ticker-posts

JAVA week 2 Program question 4


// This is the main class Question
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);
}
}

Post a Comment

0 Comments