Писать на BASIC256 Написать циклический алгоритм и программу. Создать массив A( ) для 9 чисел, А={7, -5, 0, 0, 4, 9, 10, -1, 4}. Найти сумму и среднее арифметическое всех чисел массива.
Var a:array of array of integer; c:array of array of integer; ma:array of array of integer; i,j,n:integer; begin; randomize; readln(n); setlength(a,n+1); //задаём размерность динамических массивов setlength(c,n+1); setlength(ma,n+1); for i:=1 to n do begin; setlength(a[i],n+1); setlength(c[i],n+1); setlength(ma[i],n+1); end;
writeln('Matrix A:'); //генерируем массив псеводслучайных чисел for i:=1 to n do begin; writeln; for j:=1 to n do begin; a[i,j]:=random(10); write(a[i,j]:4); end; end; writeln;
writeln('Matrix C:'); //аналогично for i:=1 to n do begin; writeln; for j:=1 to n do begin; c[i,j]:=random(10); write(c[i,j]:4); end; end;
for i:=1 to n do //сохраняем матрицу C для транспонации for j:=1 to n do ma[i,j]:=c[i,j]; writeln;
writeln('Transpose matrix C:'); //транспонируем C for i:=1 to n do begin; writeln; for j:=1 to n do begin; c[i,j]:=ma[j,i]; write(c[i,j]:4); end; end;
writeln; writeln('Final matrix:'); // получаем финальную матрицу for i:=1 to n do begin; writeln; for j:=1 to n do begin; ma[i,j]:=2*c[i,j]*a[i,j]; {по свойству дистрибутивности матриц С(A+A)=C*A+C*A=2*C*A} write(ma[i,j]:4); end; end; end.
c:array of array of integer;
ma:array of array of integer;
i,j,n:integer;
begin;
randomize;
readln(n);
setlength(a,n+1); //задаём размерность динамических массивов
setlength(c,n+1);
setlength(ma,n+1);
for i:=1 to n do
begin;
setlength(a[i],n+1);
setlength(c[i],n+1);
setlength(ma[i],n+1);
end;
writeln('Matrix A:'); //генерируем массив псеводслучайных чисел
for i:=1 to n do begin;
writeln;
for j:=1 to n do
begin;
a[i,j]:=random(10);
write(a[i,j]:4);
end;
end;
writeln;
writeln('Matrix C:'); //аналогично
for i:=1 to n do
begin;
writeln;
for j:=1 to n do
begin;
c[i,j]:=random(10);
write(c[i,j]:4);
end;
end;
for i:=1 to n do //сохраняем матрицу C для транспонации
for j:=1 to n do
ma[i,j]:=c[i,j];
writeln;
writeln('Transpose matrix C:'); //транспонируем C
for i:=1 to n do
begin;
writeln;
for j:=1 to n do
begin;
c[i,j]:=ma[j,i];
write(c[i,j]:4);
end;
end;
writeln;
writeln('Final matrix:'); // получаем финальную матрицу
for i:=1 to n do
begin;
writeln;
for j:=1 to n do
begin;
ma[i,j]:=2*c[i,j]*a[i,j];
{по свойству дистрибутивности матриц С(A+A)=C*A+C*A=2*C*A}
write(ma[i,j]:4);
end;
end;
end.
price_notebook = float(input("Введите цену тетради: "))
number_notebook = int(input("Введите количество тетрадей: "))
price_cover = float(input("Введите цену обложки: "))
number_cover = int(input("Введите количество обложек: "))
price_pen = float(input("Введите цену ручки: "))
number_pen = int(input("Введите количество ручек: "))
full_price = ((price_notebook * number_notebook) + (price_cover * number_cover) + (price_pen * number_pen))
discount = full_price / 100 * 15
answer = full_price - discount
print("Полная стоимость: ", full_price, "\nСкидка: ", discount, "\nЦена с учетом скидки: ", answer, end='')
Объяснение:
price_notebook = float(input("Введите цену тетради: ")) // Вещественная (с плавающей точкой) переменная, хранящая цену тетради
number_notebook = int(input("Введите количество тетрадей: ")) // Целочисленная переменная, хранящая количество тетрадей
price_cover = float(input("Введите цену обложки: ")) // Вещественная (с плавающей точкой) переменная, хранящая цену обложки
number_cover = int(input("Введите количество обложек: ")) // Целочисленная переменная, хранящая количество обложек
price_pen = float(input("Введите цену ручки: ")) // Вещественная (с плавающей точкой) переменная, хранящая цену ручки
number_pen = int(input("Введите количество ручек: ")) // Целочисленная переменная, хранящая количество ручек
full_price = ((price_notebook * number_notebook) + (price_cover * number_cover) + (price_pen * number_pen)) // Переменная, хранящая полную стоимость всей покупки
discount = full_price / 100 * 15 // Переменная, хранящая 15-ти % скидку
answer = full_price - discount // Цена с учетом скидки
print("Полная стоимость: ", full_price, "\nСкидка: ", discount, "\nЦена с учетом скидки: ", answer, end='') // Вывод ответа