Applying information of a computational language in pseudocode, a code may be written to describe estimating the price of an item on sale for 10% off.
Writting the code:
<em>// This </em><em>pseudocode </em><em>is </em><em>intended </em><em>to desribe</em>
<em>// computing the price of an item on sale for 10% off</em>
<em>start</em>
<em>input origPrice</em>
<em>discount = price * 0.25</em>
<em>finalPrice = origPrice - discount</em>
<em>output finalPrice</em>
<em>stop</em>
<em />
<em>// This pseudocode is intended to </em><em>compute </em><em>the number</em>
<em>// of </em><em>miles per gallon </em><em>you get with your car.</em>
<em>start</em>
<em>input milesTraveled</em>
<em>input </em><em>gallonsOfGasUsed</em>
<em>milesPerGallon = milesTraveled / gallonsOfGasUsed</em>
<em>output milesPerGallon</em>
<em>stop</em>
<em />
<em>// This pseudocode is intended to compute the number</em>
<em>// computing the per dday </em><em>cost </em><em>of your rent</em>
<em>// in a 30-day month</em>
<em>start</em>
<em>input rent</em>
<em>costPerDay = rent / 30</em>
<em>output rent</em>
<em>stop</em>
Learn more about the pseudocode here :
brainly.com/question/13208346
#SPJ1