Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Dog
- {
- int size;
- String breed;
- String name;
- void bark(){
- System.out.println("Гав! Гав!");
- }
- }
- class DogTestDrive
- {
- public static void main (String[] args)
- {
- Dog d = new Dog();
- d.size = 40;
- d.bark();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement