If the number of items bought is less than 5, then the shipping charges are

$5.00 for each item bought; if the number of items bought is at least 5, but

less than 10, then the shipping charges are $2.00 for each item bought; if

the number of items bought is at least 10, there are no shipping charges.

Correct the following code so that it computes the correct shipping

charges. if (0 < numOfItemsBought || numOfItemsBought <> 5)
shippingCharges = 5.00 * numOfItemsBought;
else if (5 <= numOfItemsBought && numOfItemsBought < 10);
shippingCharges = 2.00 * numOfItemsBought;
else
shippingCharges = 0.00;

Respuesta :

Answer:

I wrote this program in C++ using dev C++. This program is tested about what is asked in the question. This program runs successfully and meets all specified conditions. You can find the working code of this question in the explanation section.

Explanation:

#include<iostream>

using namespace std;

int main()

{

int numberOfItemBought, shippingCharges;// declare two varialbe  

 

cout<<"Enter the number of item bought ";

 

cin>>numberOfItemBought;

 

 

if (numberOfItemBought>0&&numberOfItemBought<5)/*If the number of items bought is less than 5, then the shipping charges are $5.00 for each item bought*/

 {

 shippingCharges=5*numberOfItemBought;

 

 }  

  else if(numberOfItemBought>=5&&numberOfItemBought<10)/* f the number of items bought is at least 5, but less than 10, then the shipping charges are $2.00 for each item bought*/

   {

    shippingCharges=2*numberOfItemBought;

     

   }  

 

else/*  if the number of items bought is at least 10, there are no shipping charges */

{

 shippingCharges=0;

}

 

cout<<"Shipping Charges are "; /* display the calculated shipping charges*/

cout<<shippingCharges;

 

 

return 0;  // program terminated

}