91嫩草国产线免费观看_欧美日韩中文字幕在线观看_精品精品国产高清a毛片_六月婷婷网 - 一级一级特黄女人精品毛片

有一道關(guān)于java的英文編程題求大神幫忙編一下!!

首頁(yè) > 知識(shí)產(chǎn)權(quán)2022-08-26 09:59:43

明天要考試了,有一道關(guān)于java的編程題想請(qǐng)大家?guī)蛶兔Π?,急!謝謝了

創(chuàng)建一個(gè)名稱為MainPackage的包,使它包含ParentClass和SubCla。ParentClass包含變量聲明,其值從構(gòu)造函數(shù)中輸出。SubClass類從父類派生而來,完成對(duì)父類變量的賦值。創(chuàng)建一個(gè)名稱為DemoPackage的主類,使它不在MainPackage包中,在該類中創(chuàng)建一個(gè)SubClass類的對(duì)象。
package MainPackage;

class ParentClass {
String s = "this is ParentClass!";
public ParentClass(){
System.out.println(s);
}
}
class SubClass extends ParentClass{

public SubClass(){
super.s = "this is SubClass!";
System.out.println(s);
}
}
import MainPackage.ParentClass;

public class DemoPackage {

public static void main(String[] args) {
SubClass sub = new SubClass();

}

}
我總結(jié)一下,一樓正解。

求java大神幫忙解決兩道英文的編程題

第一個(gè): Write a complete program that will use a Scanner to ask for the total marks for your tests, assignments and labs each as a percentage (out of 100). If the lab mark is higher than the assignments the lab mark is omitted and the tests are weighted at 50% and the assignments at 50%. Otherwise the tests are weighted at 50% the assignments at 25% and the labs at 25%. The program then computes and prints your final grade as a letter. If you get 80% or higher the letter grade is an A, 70 or higher is a B, 60 or higher a C, 50 or higher a D and less than 50 an F. rnrnrnrnrnrn第二個(gè): Write a program that will ask a user for the total hours worked. If the hours worked <= 35 hours the program must write that you are a part-time worker and print your hours worked. If you work <= 40 hours the program must write that you are a full time worker and print your hours worked AND If you work more than 40 hours the program must write that rnrnyou are a full time worker and must write your hours worked and overtime hours. [TAs please advise the students not to use the Booleans operators && or ||. This lab is designed to teach if statements and if – then – else statements]rnrnrnrnSample run:rnrnrnrnPlease type your hours worked: 34rnrnYou are a part time workerrnrnHours worked: 35rnrnrnrnPlease type your hours worked: 36rnrnYou are a full time worker.rnrnHours worked: 36rnrnrnrnPlease type your hours worked: 41rnrnYou are a full time worker.rnrnHours worked: 41rnrnOvertime hours: 1
第一題輸入測(cè)試成績(jī),
100>=成績(jī)>=80:A
80>成績(jī)>=70:B
70>成績(jī)>=60:C
60>成績(jī)>=50:D
50>成績(jī)>=0:F

表示看到大段英文我就眼花  o(╯□╰)o

Java簡(jiǎn)單編程就是英文版的 求大神幫忙編一下!感謝!

A bank needs to transport money from location A to location B. To do this they need to calculate the volume needed for the transports. rnYour task is to create a method that takes as parameters how many stacks of money is to be transported and the size of the stacks. The method shall calculate and return the volume needed. The size sent as parameter shall be specified as length, width and height. rnCall the method with different values to make sure it works. The returned value together with the values used for the calculation shall be printed to the screen. Double check by calculating it by hand. rnMust use at least: 1. One method that takes four parameters and return a value
/*先應(yīng)該梳理一下你的需求,你的任務(wù)是從第二段英文開始的,即:你的任務(wù)是創(chuàng)建一個(gè)函數(shù)(即方法),這個(gè)函數(shù)的參數(shù)有:被運(yùn)送的money堆,money堆的大小,寬度和高度;返回值嘛,你就返回有多少money就行了。*/
 
import java.util.ArrayList;
import java.util.List;
 
class MoneyStack
{
   //TODO:根據(jù)自己的需求定義成員函數(shù)和變量,你的需求沒有給出。
}

//theMoneyStackSize這個(gè)參數(shù)可以不要,是多余的
public int calculateMoney(List<MoneyStack> theMoneyList, int theMoneyStackSize, int theWidth, int theHeight)
{
    int aTotalMoneyValue;
    // TODO:計(jì)算過程,你所給的需求沒說怎么計(jì)算。
    return aTotalMoneyValue;
}

[小女在國(guó)外學(xué)習(xí)]有一道Java編程的英文作業(yè)題,遠(yuǎn)程求助國(guó)內(nèi)大神們,明天要交。。。求大神們救急!!

  1. Create a class called BankAccount with these fields: idNumber, name and balance. Provide readers and writers for all these fields. Each writer should return the previous value of the field it updates.  
           Provide all appropriate constructors plus methods conforming
    to these method headers:
     

         

    1.1 public void deposit( BigDecimal amount )  // add amount to current balance
           

    1.2 public boolean withdraw( BigDecimal amount )  // subtract amount from current balance; return false if not enough money



    (We mentioned the BigDecimal class when we discussed the shortcomings of the float and double primitive types -- look it up in the Javadoc documentation available through the
    Eclipse IDE menu system, or directly from Oracle.)


2. Create a sub-class of BankAccount called SavingsAccount,
       adding this field: interestRate.   Also add a method conforming to this header:


   public BigDecimal calcInterest() // add (balance*interestRate) to balance



(This is a very naive way to handle interest calculations)
       


3. Write a test driver class called "Driver" to
exercise all the methods of the BankAccount and
SavingsAccount classes, clearly printing inputs
and outputs, so the grader can easily tell what works
(everything, we hope) and what doesn't. 


救急救急救急。。。求程序

What's ur email, i will send the full version to you.


package testProject;
import java.math.BigDecimal;
public class BankAccount {
protected String idNumber;
protected String name;
protected BigDecimal balance;
//default constructor
public BankAccount(){
idNumber = "";
name = "";
balance = BigDecimal.ZERO;
}
//Create a default balance account
public BankAccount(String idNumber, String name){
this.idNumber = idNumber;
this.name = name;
this.balance = BigDecimal.ZERO;
}
//Create a account with deposit
public BankAccount(String idNumber, String name, BigDecimal balance){
this.idNumber = idNumber;
this.name = name;
this.balance = balance;
}
//make deposit
public void deposit(BigDecimal amount){
balance = balance.add(amount);
}
//withdraw money
public boolean withdraw(BigDecimal amount){
if(balance.compareTo(amount)<0){
return false;
}else{
balance = balance.subtract(amount);
return true;
}
}
//Reader of IdNumber
public String getIdNumber() {
return idNumber;
}
//Writer of IdNumber
public String setIdNumber(String idNumber) {
String oldIdNumber = this.idNumber;
this.idNumber = idNumber;
return oldIdNumber;
}
//Reader of Name
public String getName() {
return name;
}
//Writer of Name
public String setName(String name) {
String oldName = this.name;
this.name = name;
return oldName;
}
//Reader of balance
public BigDecimal getBalance() {
return balance;
}
//Writer of balance
public BigDecimal setBalance(BigDecimal balance) {
BigDecimal oldBalance = new BigDecimal(this.balance.doubleValue());
this.balance = balance;
return oldBalance;
}
}

相關(guān)推薦:

合同法知識(shí)產(chǎn)權(quán)合同范本(關(guān)于專利轉(zhuǎn)讓的合同范本)

不受著作權(quán)保護(hù)的對(duì)象(不受著作權(quán)法保護(hù)的對(duì)象包括哪些)

強(qiáng)制猥褻罪(強(qiáng)制猥褒罪立案標(biāo)準(zhǔn))

偷接熱力管道什么處罰(偷接熱力管道什么處罰)

商業(yè)秘密的民事責(zé)任(侵犯商業(yè)秘密承擔(dān)什么法律責(zé)任)

熱門標(biāo)簽