1.
What are the inputs and outputs of the algorithms listed in the first sentence of this section?
:=
or a left pointing arrow. Logical equality, which produces a boolean result and would be used in conditional or looping steps, is most commonly expressed with a double-equals, ==
.k = n - 1
which tells us to subtract 1 from the value of n
and assign that value to variable k
. During the execution of an algorithm, a variable may take on only one value at a time. Another example of an assignment is k = k - 1
. This is an instruction to subtract one from the value of k
and then reassign that value to k
.x <= y
. The following step would accomplish this objective.2. If x > y:
2.1 t = x
2.2 x = y
2.3 y = t
x > y
were false before step 2.1. If it is cold or raining:
exercise indoors
else:
go outside and run
2. Rest
1. c = your first guess
2. While f(c) != 0:
c = another guess
k
each of the integer values from m
to n
and for each of these values perform some undefined steps. We could accomplish this with a While loop:1. k := m
2. While k <= n:
2.1 execute some steps
2.2 k = k + l
For k = m to n:
execute some steps
Input: a and b, integers
Output: the value of c will be a - b
(1) c = 0
(2) While a > b:
(2.1) a := a - l
(2.2) c := c + l
a > b
.Input: k, a positive integer
Output: s = ?
(1) s = 0
(2) While k > 0:
(2.1) s = s + k
(2.2) k = k - 1
S = 0
for k = 1 to 5: S = S + k^2
Input: n, a positive integer
Output: k?
(1) f= 0
(2) k=n
(3) While k is even:
(3.1) f = f+ 1
(3.2) k = k div 2