write a algorithm to find the smallest and largest number using arrays
Answers
Answered by
0
Answer:
Input the array elements.
Initialize small = large = arr[0]
Repeat from i = 2 to n.
if(arr[i] > large)
large = arr[i]
if(arr[i] < small)
small = arr[i]
Print small and large.
Answered by
0
Answer:
- Input the array elements.
- Initialize small = large = arr[0]
- Repeat from i = 2 to n.
- if(arr[i] > large)
- large = arr[i]
- if(arr[i] < small)
- small = arr[i]
- Print small and large.
Explanation:
HOPE IT'S HELPS
MARK ME AS A BRAIN LIST
Similar questions