Вычислить (1+sin0,1)(1+sin0.2)*…*(1+sin10) — Basic(Бейсик)

n=1
FOR i=0.1 TO 10 STEP 0.1
n=n*(1+SIN(i))
NEXT i
PRINT n

Leave a Comment