#include <stdlib.h>
#include <time.h>
#include <iostream>
using namespace std;
#define N 16
void main()
{
int randomNumbers[N];
srand(time(NULL));
for (int i = 0;i < N; i++)
{
randomNumbers[i] = rand() % 40 - 20;
cout << "randomNumber[" << i << "] = " << randomNumbers[i] << endl;
}
cout << endl;
int counter = 0;
for (int i = 0; i < N; i++)
{
if (randomNumbers[i] < 0)
{
counter++;
}
}
cout << "counter = " << counter << endl;
}
Поделитесь своими знаниями, ответьте на вопрос:
Чему равна сумма чисел x и у при х=77 в 8-ой системе счисления и у=АА в 16-ой системе счисления? ответ запишите в двоичной системе
x = 77(8); y = AA(16)
x = 7 * 8 + 7 = 63(10)
y = 10 * 16 + 10 = 170(10)
x + y = 63 + 170 = 233(10)
233(10) = 11101001(2)
ответ: сумма x + y = 11101001 (в двоичной СС)