登录 注册
当前位置:主页 > 资源下载 > 9 > 运用OOAD(面向对象分析与设计)的理念来实现圣诞树的打印

运用OOAD(面向对象分析与设计)的理念来实现圣诞树的打印

  • 更新:2024-10-24 22:13:07
  • 大小:2KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:Java - 课程资源
  • 格式:RAR

资源介绍

package ooad; /** * main method * display trunk of tree * @author mm */ public class Trunk extends Shape{ /** * defaulted constructor */ public Trunk(){ } /** * to print trunk of tree */ public void print(){ for(int i = 0 ; i < 3; i++){ for(int j = 0 ; j < 4;j++) System.out.print(" "); System.out.println("*"); } } }