Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 420 Bytes

draw_flowchart_compare_two_numbers.md

File metadata and controls

26 lines (24 loc) · 420 Bytes

%%mermaid_magic -h 160

flowchart TD
  B([ Mulai ]);
  E([ Selesai ]);
  I[/ x, y /];
    D1{ x > y};
    D2{ x = y};
    S1[ s = 'x > y'];
    S2[ s = 'x < y'];
    S3[ s = 'x = y'];
    O[/ s /];
    B --> I;
    I --> D1;
    D1 -- Y --> S1;
    D1 -- T --> D2;
    D2 -- Y --> S3;
    D2 -- T --> S2;
    S1 --> O;
    S2 --> O;
    S3 --> O;
    O --> E;
Loading