у тебя все на Украинском!!!!!!!!!
I = k * i ( Информационный объем = кол-во пикселей * глубина цвета)
N = (кол-во цветов n)
2 = откуда i = 1
I = 184*2048*1= 184* бит = 184 * байт = 46 * байт (184 = 46 * 2 * 2) = 46 Кбайт
Ответ: 46 Кбайт
#include <iostream>#include <math.h>using namespace std;#include <locale.h>/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) { setlocale(LC_ALL,"rus"); int e, f, g, h, w; cin>>e>>f>>g>>h>>w; float a, b, c, D; a = (e+f/2)/3; b = abs(pow(h,2) - w); c = sqrt(pow(g- h,2) - 3 * sin(e)); D = pow(b,2) - 4 * a * c; cout<<"a = "<<a<<", b = "<<b<<", c = "<<c<<", D = "<<D<<"."; return 0;}