- This topic has 3 replies, 3 voices, and was last updated 11 years, 4 months ago by DaveClark.
-
AuthorPosts
-
fbod383MemberOk So i have gone over the quiz app designs, some are close. But what I want to do is create an app, the user inputs 7 different variables. These variable are assigned to a preset recommendation. Some variables have the same recommendation, some do not. After all of the variables have been selected, the final output would be the recommendation that has the most matching variables. Does this make sense?
fbod383MemberThe app will ask about 5 basic questions that all hunters and fisherman as themselves before hitting the woods or water to make their trip as successful as possible.
Each question will have a dropdown menu of answers to choose from.
Based on which answers were selected from the drop downs an answer will be given to solve the question on where to hunt or fish.
Example:
Where to fish?
Q1. Species
A1. Walleye
A2. Panfish
A3. Northern Pike
A4. Catfish
Q2. Time of day?
A1. Morning
A2. Afternoon
A3. Evening
A4. Night
Q3. Weather
A1. Cool and cloudy
A2. Cool and Sunny
A3. Warm and cloudy
A4. Warm and Sunny
Q4. Water temp
A1. 40-50
A2. 50-60
A3. 60-70
A4. 70-80
Q5. Time of year
A1. Pre Spawn
A2.Spawn
A3. Post Spawn
A4. Late Fall to WinterOnce the user has answered each of these, each answer is connected to a final answer. The final answer will need to be connect to atleast 2 or more of the answers above. A final answer may be something like this.
Based on your answers you should “use bring colors in shallow water near a weed line” or “fish near a point adjacent to deep water” or “fish near and inlet or outlet of flowing water”
If we create a formula where a+b+c = d I think that will work.
BrandonMemberIf you just add them you will not know if Q1 is a 3 or Q3 is a 3, just that there is a total., just remember you might not be able to actually add them, but you can put them in fixed order. So, you can use a formula a+b+c = ddd (a multi digit number). Then use an if statement for the final solution
if (myTotal == ‘13232’) //answered Q1:1, Q2:3,Q3:,Q4:3,Q5:2
{
do this
}
DaveClarkParticipantHello fbod383
How is your app coming along? I would like to see how you are doing as I am also doing calculation style projects.
-
AuthorPosts