Ответ:
10
Объяснение:
От А по А 1 столбец
От 1 по 10 количество строк: (10-1)+1=10
количество столбец * количество строк = 1*10 =10
Если будут вопросы пиши.
var
a,b,c,d: integer;
begin
readln(a,b,c,d);
writeln(a-b-c-d) ;
end.
Дважды кликнуть ПКМ (Правой Кнопкой Мыши) по иконки Paint.
<span>выбирай
#include <stdio.h>
#include <stdlib.h>
struct LIST {
int number;
struct LIST *next;
};
//-----------------------------------------------------------------------------
void Push(struct LIST** list, int number) {
struct LIST* node = malloc(sizeof(struct LIST));
node->number = number;
node->next = *list;
*list = node;
}
//-----------------------------------------------------------------------------
void Print(const struct LIST* list) {
if (list) {
Print(list->next);
printf("\%d ", list->number);
}
}
//-----------------------------------------------------------------------------
int main() {
int i = 10;
struct LIST* list = NULL;
while (i--) {
Push(&list, i + 1);
}
</span>
//---(это разделение разных программ)
4213₈ = 100 010 001 011₂ = 100010001011₂ = 1000 1000 1011₂ = 88B₁₆ = 11 + 8×16 + 8×16² = 11 + 128 + 2048 = 2187₁₀