Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Please help me with this Design for a C program, please make it as simple as possible because I'm in programming 1 and I just
Please help me with this Design for a C program, please make it as simple as possible because I'm in programming 1 and I just started.
This program is a lottery program:
Here's more information about the data structure and algorithm:
Here's what the Algorithm should look like and what I have so far:
Thank you so much in advance
Lottery Design 4: typed algorithm code for program 4 with a picture of data structure. Have at least a function to print an integer array of length 7 and one to bubble sort an integer array of length seven. Data - 2 arrays of 7 integers draw picture o Algorithm first cut - you expand Functions - besides main, have at least o bubble sort o print array of 7 integers o check for a duplicate item in a list Algorithms and Programming Style An algorithm is a list of steps or actions written in pseudo code so that the steps can be programmed in any high-level programming language. A silly example for getting ready in the morning using action verbs to start the steps for two functions is main: get out of bed go to the bathroom eat breakfast if the high temperature is less than 60F pick out warm clothes else pick out layers of clothes put on clothes gather belongings to take walk out the door eat breakfast: select what to have for breakfast get out food make food while there is more food left take a bite of food chew food swallow food put dishes in sink for each dish wash it Main Get user's numbers and check if in range and no duplicates Get random numbers that consist of no duplicates Print user list Print random list Sort user list Sort random list Print user ordered list Print random ordered list Check for and print matches Print out number of matches Bubble Sort while there were swaps set swap to 0 for each adjacent pair if first second set temp to first set first to second set second to temp set swap to 1Step 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