Answered step by step
Verified Expert Solution
Question
1 Approved Answer
IN C write a program that For a given amount of gold that the user wishes to spend, we can use a computer program to
IN C write a program that
For a given amount of gold that the user wishes to spend, we can use a computer program to caleulate the optimal amount of health H and armor A that will maximize the Elfective Heath E. The two formulae that we will use are ,H (100+ A2) 100 GoldToSpend 2 H +18-A Note that A and H can only be purchased in whole units, i.e. it doesn't make sense to buy 1.5 health or 6.7 armor Write a C program that asks the player how much gold they wish to spend, then calculates the optimal amount of H and A that the user should purchase in order to maximize E Note: Loop structures must be used to solve the problem, otherwise 0 point Jor this problem Tips to solving this problem: 1. Loop across all possible values of A The minmum amount of armor that can be purchased is A 0 and the maximum amount is A ToS ed 2. For a given amount of A, solve the GoldToSpend equation for H 3. Caleulate E using the current values of A and H used to calculate the maximum E. 5. Report the resultsStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started