Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Challenge activity 3.7.2. May someone help me solve this? Thanks! Jump to level 1 Integer variables numChickens and dollarAmount are read from input. A chicken

Challenge activity 3.7.2. May someone help me solve this? Thanks!

image text in transcribed

Jump to level 1 Integer variables numChickens and dollarAmount are read from input. A chicken costs 5 dollars. - If numChickens is less than 3 , output "Please purchase at least 3.". - If numChickens is greater than or equal to 3 , then multiply numChickens by 5. - If the product of numChickens and 5 is less than or equal to dollarAmount, output "Successful purchase!". - Otherwise, output "Need more money to purchase all.". - If numchickens is greater than 38 , output "Now out of stock.". End with a newline. Ex: If the input is 863 , then the output is: Successful purchase! 12345678910111213#includeusingnamespacestd;intmain(){intnumChickens;intdollarAmount;cin>>numChickens;cin>>dollarAmount;YYourcodegoeshere/return0

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions