/ deit.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <iomanip>
#include <math.h>
#include <locale>
using namespace std;
void vvod_matr(int mas[][4], const int &n, const int &m)
{
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
{
wcout << L"Введите элемент матрицы[" << i << "][" << j << "]: ";
cin >> mas[i][j];
}
}
void print(int mas[][4], const int &n, const int &m)
{
for(int i = 0; i < n; i++)
{
cout << "\n\t";
for(int j = 0; j < m; j++)
{
cout << setw(3) << setiosflags(ios::left) << mas[i][j];
}
}
}
void _tmain()
{
wcout.imbue(locale(".866"));
const int n = 4, m = 4;
int mas[n][m];
wcout << L"Введите матрицу:\n";
vvod_matr(mas, n, m);
wcout << L"\nВведенная матрица:\n";
print(mas, n, m);
/* умножаем четные элементы матрицы*/
int prois_chet = 1;
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j += 2)
{
prois_chet *= mas[i][j];
}
wcout << L"\n\nПроизведение четных элементов матрицы: " << prois_chet;
/*упорядочиваем элементы второго столбца по возрастанию*/
int stb = 1, t;
for(int i = 0; i < n-1; i++)
for(int j = i+1; j < n; j++)
{
if(mas[i][stb] < mas[j][stb])
{
t = mas[i][stb];
mas[i][stb] = mas[j][stb];
mas[j][stb] = t;
}
}
wcout << L"\n\nУпрядоченная матрица:\n";
print(mas, n, m);
cout << "\n\n";
}
Объяснение:
программа большая 74 строчки поэтому сайт может не так её отобразить
Відповідь:
#include <iostream>
using namespace std;
int main(){
setlocale(LC_ALL , "Rus");
int a,b;
cout << "Введите два целых числа..." << endl;
cout << "a = ";
cin >> a;
cout << "b = ";
cin >> b;
if(a > b){
cout << "Наибольшее число " << a << endl;
cout << "Наименьшее число " << b << endl;
}
else if(a < b){
cout << "Наибольшее число " << b << endl;
cout << "Наименьшее число " << a << endl;
}
else{
cout << "Числа равны" << endl;
}
return 0;
}
Поделитесь своими знаниями, ответьте на вопрос:
Известны оценки по информатике каждого из 19 учеников класса. Определите количество «четверок».
У тебя тут данных не хватает) Даже уравнение не составить