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

📄 main.java

📁 关于汽车的购买系统,收费系统,汽车耗油系统,是早期和同学开发的JAVA程序
💻 JAVA
字号:
/*
 * Main.java
 *
 * Created on 2007年4月9日, 下午5:12
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package work;

/**
 *
 * @author Administrator
 */

public class Main {
    
    /** Creates a new instance of Main */
    public Main() {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
       ResearchExpense person1=new ResearchExpense();
       person1.setDate("1/1/1996");
       person1.setCost(1900000);
       person1.setDescription("Shoes");
       person1.setTax(60000);
       person1.isPaid(true);
      
         
       ResearchExpense person2=new ResearchExpense("4/18/2007","Computers",800000,1000);
       System.out.println(person1.toString());
       System.out.println(person2.toString());
       
    }
        
    }
    

⌨️ 快捷键说明

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