peresvetoff100015
?>

Прочитать массив из 10 элементов минимальный элемент массива записать на первое место

Информатика

Ответы

maximovpavel9114
Var a: array[1..10] of Integer;
i,n,gg,ff,hh: Integer;
begin
for i:=1 to 10 do
begin
writeln('Введите ',i,' число');
readln(n);
a[i]:=n;
end;
gg:=a[i];
for i:=1 to 10 do
begin
if a[i]<gg then
begin
gg:=a[i];
ff:=i;
hh:=a[1];
end;
end;
a[1]:=gg;
a[ff]:=hh;
writeln('');
for i:=1 to 10 do
begin
writeln(a[i]);
end;
end.
gabbro19975650
1) файл паскаля приложен.
2) код на c#
        static void Main(string[] args)        {            int a, b;            a = Convert.ToInt32(Console.ReadLine());            b = Convert.ToInt32(Console.ReadLine());            if (a > 2)            {                Console.WriteLine(a / 2);                Console.WriteLine(b - 1);            }        }
3) Код на vb
dim a as integer = 0
dim b as integer = 0
a = cint(console.readline())
b = cint(console.readline())
if a > 2 then
console.writeline( a / 2)
console.writeline(b - 1)
end if
olartamonov6
Только программа, блок-схему не знаю
#include <iostream>
#include <iomanip>
#include <vector>
#include <ctime>
int main()
{
    using namespace std;

    const int n = 5;
    int A[n][n];
    int D[n][n];
    vector<int> B(n);
    vector<int> C(n);
    vector<int> S(n);   //результирующий вектор

    //как-нибудь заполняем исходные матрицы и вектора
    srand(time(0));
    for (int i = 0; i < n; ++i)
    {
        for (int j = 0; j < n; ++j)
        {
            A[i][j] = rand() % (n * n) - n * n / 2;
            D[i][j] = rand() % (n * n) - n * 2;
        }
        B[i] = rand() % (n * n) - n;
        C[i] = rand() % (n * n) - n * n + n;
    }

    //выведем исходные данные на экран
    cout << "matrix A:\n";
    for (int i = 0; i < n; ++i)
    {
        for (int j = 0; j < n; ++j)
            cout << setw(5) << A[i][j];
        cout << endl;
    }

    cout << "\nmatrix D:\n";
    for (int i = 0; i < n; ++i)
    {
        for (int j = 0; j < n; ++j)
            cout << setw(5) << D[i][j];
        cout << endl;
    }

    cout << "\nvector B:\n";
    for (int i = 0; i < n; ++i)
        cout << setw(5) << B[i] << endl;

    cout << "\nvector C:\n";
    for (int i = 0; i < n; ++i)
        cout << setw(5) << C[i] << endl;

    //вычислим требуемое
    for (int i = 0; i < n; ++i)
    {
        S[i] = 0;
        for (int j = 0; j < n; ++j)
            S[i] += D[i][j] * C[j];
        S[i] += 3 * B[i];
    }

    //выведем результат на экран
    cout << "\nvector S = D * C + 3 * B:\n";
    for (int i = 0; i < n; ++i)
        cout << setw(5) << S[i] << endl;

    return 0;
}

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Прочитать массив из 10 элементов минимальный элемент массива записать на первое место
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

yusinelnik8
amaraks67
Анатольевна
Татьяна-Мария
avolodyaev
rusmoney92
matoksana
Коваль1974
natachi
ohussyev
magichands68
Zukhra Andreevich1040
Павел_Перелыгин
dimaaristov
andrew-lev2501