Home  >  Article  >  What is the process of high-level language programming?

What is the process of high-level language programming?

青灯夜游
青灯夜游Original
2021-02-01 15:58:228406browse

The process of high-level language programming is: problem analysis, algorithm determination, and code design. First, we need to carefully analyze the accepted tasks, find out the rules for solving the problems, choose the problem-solving methods, and complete the actual problems; then design the problem-solving methods and specific steps; finally, translate the algorithm into a computer programming language, Edit, compile and link source programs.

What is the process of high-level language programming?

The operating environment of this tutorial: Windows 7 system, Dell G3 computer.

The process of high-level language programming is: problem analysis, algorithm determination, and code design.

Programming is the process of giving a program to solve a specific problem and is an important part of software construction activities. Programming often uses a certain programming language as a tool to give programs in this language. The programming process should include different stages such as analysis, design, coding, testing, and debugging. Professional programmers are often called programmers.

Steps:

1. Analyze the problem

Carefully analyze the accepted tasks, study the given conditions, analyze the final goal to be achieved, and find out Rules for solving problems, choose problem-solving methods, and complete practical problems.

2. Design algorithm

That is, design the method and specific steps to solve the problem.

3. Write program code

Translate the algorithm into a computer programming language, and edit, compile and connect the source program.

4. Run the program and analyze the results

Run the executable program and get the results. Being able to get running results does not mean that the program is correct. The results must be analyzed to see if they are reasonable. It is unreasonable to debug the program, that is, the process of discovering and eliminating faults in the program through computer testing.

5. Write program documentation

Many programs are provided for others to use. Just like formal products should provide product manuals, programs officially provided to users must provide program manuals to users. . The content should include: program name, program functions, operating environment, program loading and startup, data that needs to be input, and usage precautions, etc.

For more computer programming related knowledge, please visit: Programming Teaching! !

The above is the detailed content of What is the process of high-level language programming?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn