Java簡(jiǎn)單的編程就是英文的 可以不用很復(fù)雜 謝謝!??!
Create a program that reads an initial amount to be placed in an account then reads ten deposits using a method that prints a nice text telling the costumer what to do, reads the amount and then returns it. After each deposit a second method shall be called that takes the read amount and adds a 10% bonus before the amount is returned and deposited to the account. rnFeel free to print explaining text for each step. Print the final amount stored in the account to the screen. rnMust use at least: 1. One Scanner 2. One method without parameters that returns a value 3. One method taking one parameter and returning a value就是寫(xiě)個(gè)簡(jiǎn)單的銀行分紅程序吧。需要的密我吧。不過(guò)收取適當(dāng)?shù)腞MB
關(guān)于java編程的作業(yè),有沒(méi)有誰(shuí)會(huì)幫一下忙啊TAT(回答請(qǐng)用英文),萬(wàn)分感謝
Input Worksheet 1rn rnPART 1 DIRECTIONS : Fill in each blank below.rn rn1. ____________________________________ is the import needed to use Scanner.rn2. ____________________________________ is the Scanner method used to input an integer.rn3. ____________________________________ is the Scanner method used to input a double.rn4. ____________________________________ is the Scanner method used to input a one word String.rn5. ____________________________________ is the Scanner method used to input a one line String.rn6. ____________________________________ is the Scanner method used to input a short.rn rnPART 2 DIRECTIONS : Fill in the missing code in each blank.rn rnScanner keyboard = new Scanner(System.in);rnint intOne=0;rndouble doubleOne=0;rnshort shortOne=0;rnbyte byteOne=0;rn rnout.print("Enter an integer :: ");rn intOne = ____________________________________________________ ;rn out.print("Enter a double :: ");rn doubleOne = ____________________________________________________ ;rn out.print("Enter a short :: ");rn shortOne = ____________________________________________________ ;rn out.print("Enter a byte :: ");rn byteOne = ____________________________________________________ ;1, java.util.Scanner
2,nextInt()
3,nextDouble()
4,next()
5,nextLine()
6,nextShort()
part2
int One=keyboard.nextInt();
double One=keyboard.nextDouble();
short One =keyboard.nextShort();
byte One=keyboard.nextByte();
第二個(gè)不就填橫線上的就行么
import java.util.*;
public class VariablesWorksheet0
{
public static void main(String Args[])
{
Scanner keyboard = new Scanner(System.in);
int intOne=0;
double doubleOne=0;
short shortOne=0;
byte byteOne=0;
System.out.print("Enter an integer :: ");
intOne = keyboard.nextInt();
System.out.print("Enter a double :: ");
doubleOne = keyboard.nextDouble();
System.out.print("Enter a short :: ");
shortOne = keyboard.nextShort();
System.out.print("Enter a byte :: ");
byteOne = keyboard.nextByte();
System.out.print(intOne+"\n"+doubleOne+"\n"+shortOne+"\n"+byteOne);
}
}
part 1明顯是要寫(xiě)出程序里每一行的作用,你沒(méi)提供源程序,第一部分無(wú)解。
part 2 同理,沒(méi)源程序,無(wú)解。
總的來(lái)說(shuō),漏掉了最重要的代碼,你到底知不知道什么是程序?
JAVA編程題目,求大神幫忙解答一下,謝謝!
題目:實(shí)現(xiàn)系統(tǒng)入口程序,•編寫(xiě)類StartSMS,實(shí)現(xiàn)輸入用戶名和密碼,符合條件的進(jìn)入系統(tǒng)
要有上圖效果,要利用有參方法做,求大神幫忙!
這不是很簡(jiǎn)單么,寫(xiě)個(gè)判斷函數(shù),形式參數(shù)放入用戶名和密碼,然后判斷傳入的參數(shù)是否與TOM,和1234相等,相等則打印顯示成功,不相等就打印顯示不成功,同時(shí)重新執(zhí)行主界面。
相關(guān)推薦:
網(wǎng)頁(yè)版權(quán)信息(網(wǎng)頁(yè)版權(quán)怎么寫(xiě))
注冊(cè)商標(biāo)查詢(注冊(cè)商標(biāo)該怎么查詢)
商標(biāo)使用許可(商標(biāo)使用許可的種類有哪些)
表演者享有哪些權(quán)利(表演者對(duì)其表演依法享有什么權(quán)利呢)
商標(biāo)的侵權(quán)處罰(商標(biāo)侵權(quán)解決辦法)