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
dianakryukova00
11.11.2021
Только программа, блок-схему не знаю #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;
4 потом 2 и все вот тебе цилиндр