Заполнить массив А(15) ручным способом и посчитать в нем количество отрицательных элементов. На QBAS, пожалуйста очень срочно!!!!
for i=1 to 15
input a(i)
if a(i)<0 then n=n+1
next i
print n
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
for i=1 to 15
input a(i)
if a(i)<0 then n=n+1
next i
print n