cls
input "n"; n
dim a(n)
for i=1 to n
input a(i)
next i
for i = 1 to n
if a(i) < 0 then ? a(i)
next i
Тестирование выполнено в программе QB64 ( Скачать )
cls
input "n"; n
dim a(n)
for i=1 to n
input a(i)
next i
for i = 1 to n
if a(i) < 0 then ? a(i)
next i
Тестирование выполнено в программе QB64 ( Скачать )