cout <<"Введите номер месяца: "; cin >>month; switch(month) { case 1: case 2: case 3: { quart=1; break; } case 4: case 5: case 6: { quart=2; break; } case 7: case 8: case 9: { quart=3; break; } case 10: case 11: case 12: { quart=4; break; } }
cout <<"Квартал: " <<quart <<endl;
return 0; }
tagirova1
26.11.2022
Только программа, блок-схему не знаю #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; }
Aleksei Aleksandrovna649
26.11.2022
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
Ответить на вопрос
Поделитесь своими знаниями, ответьте на вопрос:
Пользуясь оператором switch? по введенному номеру месяца вывести на экран сообщение о номере квартала с++. нужен код. .
using namespace std;
int main()
{
int month;
int quart=-1;
cout <<"Введите номер месяца: ";
cin >>month;
switch(month)
{
case 1:
case 2:
case 3: { quart=1; break; }
case 4:
case 5:
case 6: { quart=2; break; }
case 7:
case 8:
case 9: { quart=3; break; }
case 10:
case 11:
case 12: { quart=4; break; }
}
cout <<"Квартал: " <<quart <<endl;
return 0;
}