biryu2205 / Biryu

0 stars 0 forks source link

Hackerrank Java Inheritance I #74

Closed biryu2205 closed 6 years ago

biryu2205 commented 6 years ago
import java.io.*;
import java.util.*;
import java.text.*;
import java.math.*;
import java.util.regex.*;

class Animal{
    void walk(){
        System.out.println("I am walking");
    }
}

class Bird extends Animal{
  void fly(){
        System.out.println("I am flying");
    }
    void sing(){
        System.out.println("I am singing");
    }
    public static void main(String[] args){

      Bird bird = new Bird();
      bird.walk();
      bird.fly();
      bird.sing();
   }
}
letientai299 commented 6 years ago

Format code.

biryu2205 commented 6 years ago

Roger that

letientai299 commented 6 years ago

Still bad format

biryu2205 commented 6 years ago

Update code : Reformat code

class Animal {
  void walk() {
    System.out.println("I am walking");
  }
}

class Bird extends Animal {
  void fly() {
    System.out.println("I am flying");
  }

  void sing() {
    System.out.println("I am singing");
  }

  public static void main(String[] args) {

    Bird bird = new Bird();
    bird.walk();
    bird.fly();
    bird.sing();
  }
}