dim a(12), b(12), c(12)
input "введите размерность массивов а и в - m= ", m
print "введите элементы массивов а и в: "
for i=1 to m
input a(i), b(i)
next i
s=0
for i = 1 to m
c(i)= a(i) + b(m-i+1)
s= s+c(i)
next i
print "массив а: "
for i = 1 to m
print a(i);
next i
print "массив b: "
for i = 1 to m
print b(i);
next i
print "массив c: "
for i = 1 to m
print c(i);
next i
print "сумма элементов массива с ="; s
PL/SQL is a modern, block-structured programming language. It provides several features that make developing powerful database applications very convenient. For example, PL/SQL provides procedural constructs, such as loops and conditional statements, that are not available in standard SQL.
You can directly enter SQL data manipulation language (DML) statements inside PL/SQL blocks, and you can use procedures supplied by Oracle to perform data definition language (DDL) statements.
PL/SQL code runs on the server, so using PL/SQL lets you centralize significant parts of your database applications for increased maintainability and security. It also enables you to achieve a significant reduction of network overhead in client/server applications.
Поделитесь своими знаниями, ответьте на вопрос:
Составьте программу(паскаль) для нахождения площади и периметра треугольника