🔒 Closed Quad Kill

Status
Not open for further replies.
Java:
import java.util.Scanner;

class Quadrilateral {
  public void showDescription() {
    System.out.println("- is quadrilateral");
  }
}

class Rectangle extends Quadrilateral {
  public void showDescription() {
    System.out.println("- has 4 right angles");
    super.showDescription();
  }
}

class Square extends Rectangle {
  public void showDescription() {
    System.out.println("- has 4 equal sides");
    super.showDescription();
  }
}
class RunQuad {
  public static void main(String[] args) {
 
  Scanner sc = new Scanner(System.in);
 
    System.out.println("Press R for Rectangle or S for Square.");
    String userInput = sc.nextLine();
   
    Quadrilateral newRec = new Rectangle();
    Rectangle newSqua = new Square();
   
        if(userInput.equalsIgnoreCase("R")){
            System.out.println("A Rectangle:");
            newRec.showDescription();
        }
        else if(userInput.equalsIgnoreCase("S")){
            System.out.println("A Square:");
            newSqua.showDescription();
        }
  }
}

follow mo nalang kung pano ko ginawa. punta ka d2 You do not have permission to view the full content of this post. Log in or register now. kung need mo malaman kung pano.

try mo ikaw ang gumawa sa part 2.
 
Status
Not open for further replies.

About this Thread

  • 3
    Replies
  • 2K
    Views
  • 4
    Participants
Last reply from:
Nielamae

Trending Topics

Online now

Members online
1,176
Guests online
1,967
Total visitors
3,143

Forum statistics

Threads
2,292,560
Posts
29,077,897
Members
1,209,402
Latest member
dnnsetpn
Back
Top