⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tree.java

📁 some example source of java,for beginner.inside there are a lot of sample examples
💻 JAVA
字号:
package example6;public class Tree {  public void root(){    String sSite="土壤中";    String sFunction="吸收养分";    print("位置:"+sSite);    print("功能:"+sFunction);  }  public void bolo(){    String sSite="地面";    String sFunction="传递养分";    print("位置:"+sSite);    print("功能:"+sFunction);  }  public void branch(){    String sSite="树干上";    String sFunction="传递养分";    print("位置:"+sSite);    print("功能:"+sFunction);  }  public void leaf(){    String sSite="树干上";    String sFunction="传递养分";    String sColor="绿色";    print("位置:"+sSite);    print("功能:"+sFunction);    print("顔色");  }  public void print(String sPara){    System.out.println(sPara);  }  public static void main(String[] args) {    Tree t=new Tree();    t.print("描述一棵树:");    t.print("树根:");    t.root();    t.print("树干:");    t.bolo();    t.print("树枝:");    t.branch();    t.print("树叶:");    t.leaf();  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -