#13
No one can learn programming and solve problems without knowing algorithms . Algorithms are about taking a set of steps to solve the problem in the simplest way. You can ask why do we need algorithms for programming? One thing we must understand is that a computer has no mind, meaning it cannot think, unlike a human. If you tell it anything, it will understand it. Directly, but the computer must tell it all the steps that must be followed to do that thing, and if you forget to tell it a step or make a mistake in it, it will not understand the matter, and the steps are algorithms. Any program you want to design before you implement it in any programming language must be written in the form of pseudocode , which is the organization of the steps that you will follow and the method of writing them, like any method of writing a programming language, so you must use it first so that your brain is qualified for programming. Example: If I want the computer to find a name for me, I type the fol
Comments
Post a Comment