subject
Computers and Technology, 20.09.2019 00:00 mem8163

Note this is in python ! 3.12 program: painting a wall (python 3)(1) prompt the user to input a wall's height and width. calculate and output the wall's area. (submit for 2 points).enter wall height (feet): 12enter wall width (feet): 15wall area: 180.0 square feet(2) extend to also calculate and output the amount of paint in gallons needed to paint the wall. assume a gallon of paint covers 350 square feet. store this value in a variable. (submit for 2 points, so 4 points total).enter wall height (feet): 12enter wall width (feet): 15wall area: 180.0 square feetpaint needed: 0.5142857142857142 gallons(3) extend to also calculate and output the number of 1 gallon cans needed to paint the wall. hint: use a math function to round up to the nearest gallon. (submit for 2 points, so 6 points total).enter wall height (feet): 12enter wall width (feet): 15wall area: 180.0 square feetpaint needed: 0.5142857142857142 gallonscans needed: 1 can(s)(4) extend by prompting the user for a color they want to paint the walls. calculate and output the total cost of the paint cans depending on which color is chosen. hint: use a dictionary to associate each paint color with its respective cost. red paint costs $35 per gallon can, blue paint costs $25 per gallon can, and green paint costs $23 per gallon can. (submit for 2 points, so 8 points total).enter wall height (feet): 12enter wall width (feet): 15wall area: 180.0 square feetpaint needed: 0.5142857142857142 gallonscans needed: 1 can(s)choose a color to paint the wall: redcost of purchasing red paint: $35

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 18:30
Kto rozmawia z clamentain przez krótkofalówke w the walking dead w 4 epizodzie
Answers: 1
question
Computers and Technology, 23.06.2019 19:00
This question involves a class named textfile that represents a text file. public class textfile { private string filename; private string filename; private arraylist words; // constructors not shown // postcondition: returns the number of bytes in this file public int filesize() { } // precondition: 0 < = index < words.size() // postcondition: removes numwords words from the words arraylist beginning at // index. public void deletewords(int index, int numwords) { } // precondition: 0 < = index < = words.size() // postcondition: adds elements from newwords array to words arraylist beginning // at index. pub lic voidaddwords(int index, string[] newwords) { } // other methods not shown } complete the filesize() method. the filesize() is computed in bytes. in a text file, each character in each word counts as one byte. in addition, there is a space in between each word in the words arraylist, and each of those spaces also counts as one byte. for example, suppose the words arraylist stores the following words: { mary had a little lamb; its fleece was white as snow. } the filesize() method would compute 4 + 3 + 1 + 6 + 5 + 4 + 6 + 3 + 5 + 2 + 5 as the sum of the lengths of each string in the arraylist. the value returned would be this sum plus 10, because there would also be 10 spaces in between the 11 words. complete the filesize() method below: // postcondition: returns the number of bytes in this file public int filesize() { }
Answers: 1
question
Computers and Technology, 24.06.2019 01:00
Me if you do then you get 10 points and brainliest
Answers: 1
question
Computers and Technology, 24.06.2019 15:00
Universal windows platform is designed for which windows 10 version?
Answers: 1
You know the right answer?
Note this is in python ! 3.12 program: painting a wall (python 3)(1) prompt the user to input a wal...
Questions
Questions on the website: 13722361