diff --git a/lectures/figures/flowchart_condition.drawio.svg b/lectures/figures/flowchart_condition.drawio.svg new file mode 100644 index 0000000..a311aa0 --- /dev/null +++ b/lectures/figures/flowchart_condition.drawio.svg @@ -0,0 +1,4 @@ + + + +
a -= 5
a += 5
no
a > 17
yes
\ No newline at end of file diff --git a/lectures/figures/flowchart_iteration.drawio.svg b/lectures/figures/flowchart_iteration.drawio.svg new file mode 100644 index 0000000..861a34c --- /dev/null +++ b/lectures/figures/flowchart_iteration.drawio.svg @@ -0,0 +1,4 @@ + + + +
print(i)
no
i < 10
yes


i += 1


\ No newline at end of file diff --git a/lectures/figures/flowchart_procedure.drawio.svg b/lectures/figures/flowchart_procedure.drawio.svg new file mode 100644 index 0000000..ff51248 --- /dev/null +++ b/lectures/figures/flowchart_procedure.drawio.svg @@ -0,0 +1,4 @@ + + + +
a = 4.2
a = a * 10
power(a, 3)
r *= r
no
i < (b-1)
yes


i += 1


r = a
\ No newline at end of file diff --git a/lectures/figures/flowchart_procedure_2.drawio.svg b/lectures/figures/flowchart_procedure_2.drawio.svg new file mode 100644 index 0000000..166b0f5 --- /dev/null +++ b/lectures/figures/flowchart_procedure_2.drawio.svg @@ -0,0 +1,4 @@ + + + +
a = 3
a = power(a, 3)
r *= r
no
i < (b-1)
yes


i += 1


r = a
\ No newline at end of file diff --git a/lectures/figures/flowchart_statement.drawio.svg b/lectures/figures/flowchart_statement.drawio.svg new file mode 100644 index 0000000..eaefe17 --- /dev/null +++ b/lectures/figures/flowchart_statement.drawio.svg @@ -0,0 +1,4 @@ + + + +
a = 4.2
a = a * 10
\ No newline at end of file