Ticker

6/recent/ticker-posts

Java Week 4: Q3


/*The program in this assignment is attempted to print the following output: 

-----------------OUTPUT-------------------
This is large
This is medium
This is small
This is extra-large
------------------------------------------------- *

interface ExtraLarge{
static String extra = "This is extra-large";
void display();
}

class Large {
    public void Print() {
        System.out.println("This is large");
    }
}

class Medium extends Large {
    public void Print() {
    super.Print();  
        System.out.println("This is medium");
    }
}
class Small extends Medium {
    public void Print() {
        super.Print();  
        System.out.println("This is small");
    }
}

class Question43 implements ExtraLarge{
    public static void main(String[] args) {
        Small s = new Small();
        s.Print();
Question43 q = new Question43();
q.display();
    }
public void display(){
System.out.println(extra);
}
}  

Post a Comment

0 Comments