A flow chart specification

C # flowchart describing the program logic

A flow chart is a graphical representation of program steps. The flowchart includes the following symbols:

More graphics, the flow lines for connecting two adjacent step; and each program has only a start and end .

The following describes the flowchart, two floating point and seeking, behind is realized by C #:

 

A step of continuously repeated program called " cycle ." Circulation can simplify our code, reduce redundancy. For example, to print an integer of 1-10, we can write 10 print statements may be this:

This loop structure will first determines x <= 10, the condition is true executes the loop ( "Output x" and "x ++"), after again determining the condition x <= 10, if the condition is true then continue the loop. ..... If the condition is false, the loop ends.

 

A step of continuously repeated program called " cycle ." Circulation can simplify our code, reduce redundancy. For example, to print an integer of 1-10, we can write 10 print statements may be this:

 

A step of continuously repeated program called " cycle ." Circulation can simplify our code, reduce redundancy. For example, to print an integer of 1-10, we can write 10 print statements may be this:

Guess you like

Origin www.cnblogs.com/dmyao/p/12462351.html