第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用selenium和java獲取div的總數(shù)

使用selenium和java獲取div的總數(shù)

慕雪6442864 2023-08-09 16:12:11
一家油漆公司確定,每 115 平方英尺的墻面空間需要一加侖油漆和八小時的勞動力。該公司每小時人工費為 18.00 美元。編寫一個程序,允許用戶輸入要粉刷的房間數(shù)量以及每加侖油漆的價格。它還應(yīng)該詢問每個房間的墻壁空間的平方英尺。該程序應(yīng)具有返回以下數(shù)據(jù)的方法: ? 所需油漆的加侖數(shù) ? 所需的人工時間 ? 油漆成本 ? 人工費用 ? 油漆工作的總成本 然后應(yīng)顯示以下數(shù)據(jù):屏幕。我還沒有解決這個問題的勞動部分,但由于 PaintNeeded 變量,我無法打印 costOfPaint() 。我嘗試將 costOfPaint 方法中的語句寫入到 main 方法中,并且它有效。但這并沒有幫助,因為我需要方法來做到這一點。我知道我的問題與 PaintNeeded 變量有關(guān),我只是不確定如何解決這個問題。公共類主要{public static double paintRequired(double totalSquareFeet){    double paintNeeded = totalSquareFeet / 115;    return paintNeeded;                                                          }public static double costOfPaint(double paintNeeded, double costOfPaint){    double paintCost = paintNeeded * costOfPaint;    return paintCost;                                                    }public static void main(String[] args){    double costOfPaint = 0;    int totalSquareFeet = 0;    double paintNeeded = 0;    Scanner getUserInput = new Scanner(System.in);    System.out.println("what is the cost of the paint per gallon");        costOfPaint = getUserInput.nextDouble();    System.out.println("How many rooms do you need painted");        int rooms = getUserInput.nextInt();            for(int i = 1; i <= rooms; i++){                System.out.println("how many square feet are in room:" + i);                int roomSquareFeet = getUserInput.nextInt();                totalSquareFeet = roomSquareFeet + totalSquareFeet;                                           }    System.out.println("the amount of paint needed:" + paintRequired(totalSquareFeet) + "gallons");    System.out.println("the cost of the paint will be: " + costOfPaint(paintNeeded, costOfPaint));}}對于我的繪制成本,我一直得到 0。
查看完整描述

1 回答

?
偶然的你

TA貢獻1841條經(jīng)驗 獲得超3個贊

你不改變paintNeeded??偸侨绱?code>0。

paintNeeded = paintRequired(totalSquareFeet);

System.out.println("the amount of paint needed: " + paintNeeded + " gallons");
System.out.println("the cost of the paint will be: " + costOfPaint(paintNeeded, costOfPaint));


查看完整回答
反對 回復 2023-08-09
  • 1 回答
  • 0 關(guān)注
  • 127 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號