Скорей всего отрицание.. обычно с этим примером идет само выражение
a = 3, b = 2
b = 9 + a · b = 9 + 3 · 2 = 9 + 6 = 15
a = b / 5 · a = 15 / 5 · 3 = 3 · 3 = 9
<h2>Ответ</h2>
9
Задача 2.1
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int input;
cin >> input;
int size1 = abs(input / 100 - input % 100 / 10);
int size2 = abs(input % 100 / 10 - input % 10);
if (size1 == size2){
cout << "YES" << endl;
}else{
cout << "NO" << endl;
}
return 0;
}
1)
var n,i:integer;
begin
readln(n);
for i:=1 to n do write(random(11),' ');
end.
Пример:
10
5 2 9 5 7 2 10 0 1 6
2.
var s,i:integer;
begin
s:=0;
for i:=1 to 10 do s:=s+i;
write('s = ',s);
end.
Результат:
s = 55