Construct a pseudocode to compute, to display the sum of ten (10) integer numbers and determine the biggest and smallest number.

2 answers

sum=0
read num
max = min = num
for i = 2..10
read num
if num>max then max=num
if num<min then min = num
sum += num
next i
print sum
Write a pseudocode to determine the type of triangle, depending upon the value of the sides.