Can you show how to use an array with integers and not strings? How would I use an array to store numbers to output what is the largest and smallest number?
Well spotted. I'd left it as was as this was a solution to a student assignment so wanted them to see if they were testing properly. Feel free to send me a fixed version. You could do it with two for loops or a dirty break command
QUESTION, Please! :) How do I add a time delay to a flowgorithm program? For example, at the end of the program, instead of just ending, I have it looping back to the start of the program, but before it goes back to the start, I want it to say what it says, which is "Go Do It!" , then I want it to wait 5 seconds, then restart, instead of instantly restarting.
Great videos on common concept to programming. Can you please 🙏 do a video on flowgorithm on linear search or is it the same principle as array? Thanks 🙏 for your feedback
@@flowgorithm Thanks 🙏 I promise to share your page among my students for your effort in replying all questions is top notch so my second question, where you use call: LoadArray[size, number] I got the size but the number is what I don’t grab it’s role and also if I have a certain set of numbers to search from rather than random numbers what do I need to do differently? Thanks for your time.
@@kpieceemmry3387 If you want a fixed set of items just put them in the array rather than using the random number bit. assuming you are refering to this video ua-cam.com/video/HcZKrsPO9g0/v-deo.html for the second question. In the function i create called LoadArray, size = how many elements in the array. Number is the range for the random number so if number = 6 you'd get a number between 0 and 6
You're not good at explaining this very well. But thanks because this video is helpful. Try less doing and more explaining. Your explanations in this video does this: "The definition of shark is shark." I only learned by reviewing your work. I did not learn from your words at all. That is why you have a lot of bad reviews on this video. Please improve it.
This program it's complicate and wrong: you use an array which contains 10 numbers but the program can find only the words below the tenth word... can you fix it?
Not sure why you think either. If it's complicated I'm sorry - speak to your teacher or try to explain what is making it complicated for you and maybe we can help simplify it for you. I've tested the code and uploaded a version to www.microbitsandbobs.co.uk/downloads/flowgorithm/usinganarrray.fprg It loads 10 words (or numbers as it treats these as strings) into an array and finds them including the last item . You might want to check your code or download mine and compare it but as far as i can see it works.
@@flowgorithm I've fixed it with a simple trick Anyway thank a lot; did you prove to insert the tenth word? Or insert a word which isn't incluse in the "list"?
@@flowgorithm so I think I had a bug from flowgorithm because I've done a similar program with 5 words to insert. First I done a program without have seen the yours, then I comparated with the your program and fix a bit, finally I have seen an imperfection in the lenght of array and I fix it with a trick P.s. sorry for the english but I'm from another conutry
UA-cam no longer suports small content providers do im not currently motivated to create new content other than what i need for my students. The task you are asking is just about covered in other videos. Follow tbe video on creating an array of random numbers, then just loop through the array eith a for loop like the big small one but add the value to a total and thrn print the total at the end. I need to get to 1000 subscribers before i will add new content
As it stands no. But if you look at the documentation you will see it appears to can create additional data types. Ive not tried myself but will have a look. The problem would be that different languages declare multi dimentional arrays in very different ways so i guess this would cause issues when it exports to code.
@@flowgorithm I have a 12-element array to hold the names of the months, and I'm trying to use it in parallel with two other 12-element arrays. The other two 12-element arrays will have their values assigned by the user, but I'm obviously not going to make the user enter the names of the months. Is it possible for me to assign values to all 12 elements of the months array in one step? Or do I have to do 12 individual assignment steps? i.e. months[0] = "January" ; months[1] = "February" ; etc. Sorry for the long question lol
Can you show how to use an array with integers and not strings? How would I use an array to store numbers to output what is the largest and smallest number?
Will sort out a tutorial this weekend for you Christine.
ua-cam.com/video/HcZKrsPO9g0/v-deo.html
Hi, if I'm not wrong, the external While loop will never end if the word is not found...
Well spotted. I'd left it as was as this was a solution to a student assignment so wanted them to see if they were testing properly. Feel free to send me a fixed version. You could do it with two for loops or a dirty break command
QUESTION, Please! :) How do I add a time delay to a flowgorithm program? For example, at the end of the program, instead of just ending, I have it looping back to the start of the program, but before it goes back to the start, I want it to say what it says, which is "Go Do It!" , then I want it to wait 5 seconds, then restart, instead of instantly restarting.
There is no delay or time functionality built into flowgorithm
How to find total number of negative elements in an array??? And how to contact you(Mail)
damian@ukrocketry.com
Great videos on common concept to programming.
Can you please 🙏 do a video on flowgorithm on linear search or is it the same principle as array? Thanks 🙏 for your feedback
Yes this video shows a linear search in an array
@@flowgorithm Thanks 🙏 I promise to share your page among my students for your effort in replying all questions is top notch
so my second question, where you use call: LoadArray[size, number] I got the size but the number is what I don’t grab it’s role and also if I have a certain set of numbers to search from rather than random numbers what do I need to do differently? Thanks for your time.
@@kpieceemmry3387 If you want a fixed set of items just put them in the array rather than using the random number bit. assuming you are refering to this video ua-cam.com/video/HcZKrsPO9g0/v-deo.html for the second question. In the function i create called LoadArray, size = how many elements in the array. Number is the range for the random number so if number = 6 you'd get a number between 0 and 6
Can you please tell me the tool you have used for creating flowgorithm
I didnt create flowgorithm but i assume it was written in C# or similar
How would you create a program that, given a set of 3 numbers, it can organize them from small, medium, and large when you run it?
Take a look at my bubble sort video
How would you create an flowgorithm to square then sum all elements in an array?
loop through the array with a for loop square the number as you go and keep a running total
@@flowgorithm thanks
@@ginadennis1056 if you need specific help let me know
You're not good at explaining this very well.
But thanks because this video is helpful.
Try less doing and more explaining.
Your explanations in this video does this:
"The definition of shark is shark."
I only learned by reviewing your work. I did not learn from your words at all.
That is why you have a lot of bad reviews on this video. Please improve it.
This program it's complicate and wrong: you use an array which contains 10 numbers but the program can find only the words below the tenth word...
can you fix it?
Not sure why you think either. If it's complicated I'm sorry - speak to your teacher or try to explain what is making it complicated for you and maybe we can help simplify it for you.
I've tested the code and uploaded a version to www.microbitsandbobs.co.uk/downloads/flowgorithm/usinganarrray.fprg
It loads 10 words (or numbers as it treats these as strings) into an array and finds them including the last item . You might want to check your code or download mine and compare it but as far as i can see it works.
@@flowgorithm I've fixed it with a simple trick
Anyway thank a lot; did you prove to insert the tenth word? Or insert a word which isn't incluse in the "list"?
@@francostaccioli634 it finds any word in any position - it won't find it if its not in the list
@@flowgorithm so I think I had a bug from flowgorithm because I've done a similar program with 5 words to insert. First I done a program without have seen the yours, then I comparated with the your program and fix a bit, finally I have seen an imperfection in the lenght of array and I fix it with a trick
P.s. sorry for the english but I'm from another conutry
you CAN pass an array in flowgorithim?
No but arrays are treated as global variables
can you create a programme that generates 10 random numbers using an array and calculates the sum of the array
UA-cam no longer suports small content providers do im not currently motivated to create new content other than what i need for my students.
The task you are asking is just about covered in other videos. Follow tbe video on creating an array of random numbers, then just loop through the array eith a for loop like the big small one but add the value to a total and thrn print the total at the end.
I need to get to 1000 subscribers before i will add new content
Thank you sir
can we declare a 2d array?
No flowgorithm doesn't support this yet
Can we form 2D array in this flowgarithm
As it stands no. But if you look at the documentation you will see it appears to can create additional data types. Ive not tried myself but will have a look. The problem would be that different languages declare multi dimentional arrays in very different ways so i guess this would cause issues when it exports to code.
you can make a 2d array from a 1d array where the index of your array is i = collum + (width * row)
may i have the .flowgorithm file? so i can learn and implement in my own way :D
@@iminthatweirdpartofyoutube2687 can you please explain more about creating a 2d array
How we do input array
Use its index ie arrayname[0]
@@flowgorithm I have a 12-element array to hold the names of the months, and I'm trying to use it in parallel with two other 12-element arrays. The other two 12-element arrays will have their values assigned by the user, but I'm obviously not going to make the user enter the names of the months. Is it possible for me to assign values to all 12 elements of the months array in one step? Or do I have to do 12 individual assignment steps? i.e. months[0] = "January" ; months[1] = "February" ; etc. Sorry for the long question lol
@@jacob.mp4 as far as im aware in flowgorithm you will need 12 assignments.
i love u more than pizza
Ty