用循环语句设计一个算法,在有限个实数,a1,a2……an中找出最大数~
问题描述:
用循环语句设计一个算法,在有限个实数,a1,a2……an中找出最大数~
答
max ← a1.
FOR k = 2 to n
IF max max ← ak
循环结束max即为所求.