Байт=1024битов
кбайт=1024байт
мбайт=1024кбайт
гбайт=1024мбайт
тбайт=1024гбайт
3584/2=1792
A6=341=3*6^2+4*6^1+1*6^0=133
<h2>Код</h2>
#include <iostream>
#include <fstream>
#include <math.h>
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
int x = 0, y = 0;
double R = 0;
cout << "y = "; cin >> y;
cout << "x = "; cin >> x;
R = abs(pow(pow(sin(y), 2.0) + 6.835, 1.0/2) + exp(x));
ofstream outputResult("output.txt");
outputResult << R;
outputResult.close();
}
<h2>Проверка</h2>
[Скриншот]
Файл сохраняется в папке с файлом проекта.
Программа на скрине! Надеюсь помог!