急急急,小弟急求一个用java编写的应用程序,求大神,重谢 50

老师期末作业让写一个java的作业,任意编写一个小应用程序,小弟实在不会,希望有大神直接给出个成品,外加付有说明,急急急... 老师期末作业让写一个java的作业,任意编写一个小应用程序,小弟实在不会,希望有大神直接给出个成品,外加付有说明,急急急 展开
 我来答
zhuniadi82
2015-12-04 · TA获得超过397个赞
知道小有建树答主
回答量:205
采纳率:66%
帮助的人:112万
展开全部
//代码是楼上的,帮你排了一下版。


public class Account {
private int id;
private double balance;
private double annuallnterestRate;
private Date dateCreated;

public Account() {
this.id = 0;
this.balance = 0;
this.annuallnterestRate = 0;
this.dateCreated = new Date();
}

public Account(int id, double balance) {
this.id = id;
this.balance = balance;
this.dateCreated = new Date();
}

public int getId() {
return this.id;
}

public void setId(int id) {
this.id = id;
}

public double getBalance() {
return this.balance;
}

public void setBalance(double balance) {
this.balance = balance;
}

public double getAnnuallnterestRate() {
return this.annuallnterestRate;
}

public void setAnnuallnterestRate(double annuallnterestRate) {
this.annuallnterestRate = annuallnterestRate;
}

public Date getDateCreated() {
return this.dateCreated;
}

public double getMonthlyInterestRate() {
double monthlyInterest = java.lang.StrictMath.pow(
this.annuallnterestRate, 1.0 / 12) - 1;
return monthlyInterest;
}

public String withdraw(double amount) {
this.balance = this.balance - amount;
return "withdraw success";
}

public String deposit(double amount) {
this.balance = this.balance + amount;
return "deposit success";
}

public static void main(String[] args) {
Account account = new Account(1122, 20000.00);
account.setAnnuallnterestRate(0.045);
account.withdraw(2500.00);
account.deposit(3000.00);
System.out.println(account.getBalance());
System.out.println(account.getMonthlyInterestRate());
System.out.println(account.getDateCreated());
}
}
web_ant
2015-12-04 · TA获得超过157个赞
知道小有建树答主
回答量:266
采纳率:16%
帮助的人:92.5万
展开全部
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Deque;
import java.util.List;
import java.util.Stack;
/**
* 病人到医院看病,排队看医生
* <br/><类描述>
* <br/><类详细描述>
* <br/><版本>
* *<br/>
*/
public class DoctorMain implements Runnable
{
private static Deque<Integer> binRenDeque;
private boolean onWork = false;
private boolean isDoctor = true;
public static Integer binRenNumber = 0;
public DoctorMain()
{
System.out.println("开始上班");
binRenDeque = new ArrayDeque<Integer>();
}
/**
* <br/>
* <方法概述> <br/>
* <方法详细概述> <br/>
* <版本> <br/>
* <作者> *
* @param args
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
DoctorMain doctor=new DoctorMain();
doctor.setDoctor(true);
//上班了
doctor.setOnWork(true);
Thread th1=new Thread(doctor);

DoctorMain binRen=new DoctorMain();
binRen.setDoctor(false);

binRen.setOnWork(true);

Thread th2=new Thread(binRen);

th1.start();
th2.start();

try
{

Thread.sleep(60000);
doctor.setOnWork(false);
binRen.setOnWork(false);
}
catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Override
public void run()
{
while (onWork)
{

try
{
//是医生还是病人
if (isDoctor)
{
// 医生给病人看病时间
Thread.sleep(2000);
if (!binRenDeque.isEmpty())
{
Integer number = binRenDeque.pollLast();
System.out.println("医生正在给" + number + "号病人看病");
}
}
else
{
//病人来的间隔时间
Thread.sleep((int)(Math.random()*3000));
binRenNumber++;
System.out.println("来了一个病人,号码是:"+binRenNumber);
binRenDeque.push(binRenNumber);
}

//列出所有等待的病人
for(Integer bn:binRenDeque)
{
System.out.println(bn+"号的病人在排队");
}
}
catch (InterruptedException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}

}
System.out.println("医生下班了");
}
public static Deque<Integer> getBinRenStack()
{
return binRenDeque;
}
public static void setBinRenStack(Deque<Integer> binRenStack)
{
DoctorMain.binRenDeque = binRenStack;
}
public boolean isOnWork()
{
return onWork;
}
public void setOnWork(boolean onWork)
{
this.onWork = onWork;
}
public boolean isDoctor()
{
return isDoctor;
}
public void setDoctor(boolean isDoctor)
{
this.isDoctor = isDoctor;
}
public static Integer getBinRenNumber()
{
return binRenNumber;
}
public static void setBinRenNumber(Integer binRenNumber)
{
DoctorMain.binRenNumber = binRenNumber;
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
xiaofeizm55333

2015-12-07 · TA获得超过1.4万个赞
知道大有可为答主
回答量:8535
采纳率:78%
帮助的人:847万
展开全部
百度一下,想飞社区,在资源-java开发-java实例分类下面,有不少的java代码实例和项目案例,源码+说明文档,比较详细
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式