Asked by nisha

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

Answers

Answered by oobleck
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
Answered by reen
Write a pseudocode to determine the type of triangle, depending upon the value of the sides.
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions