Use a logical OR to write a more concise equivalent of the following code:
if (saleAmount > = 300)
cout << "Delivery available" << endl;
else
if (areaCode = = LOCAL_CODE)
cout << "Delivery available" << endl;
+4
Answers (1)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Use a logical OR to write a more concise equivalent of the following code: if (saleAmount > = 300) cout ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Use a logical OR to write a more concise equivalent of the following code: if (saleAmount > = 300) cout << "Delivery available" << endl; else if (areaCode = = LOCAL_CODE) cout << "Delivery available" << endl;