В русском алфавите 33 букв (символа), значит весь алфавит весит 33 * 3 = 99 бит это примерно 12,3 байта.
Ответ:
x = 2; y = -0.5;
x = 10, y = 0.166667;
x = 5; y = 1;
Объяснение:
Вот сама программа, на питоне как я понял
x = 0
y = 0.0
x = input('Введите x = ')
print('y равен ' , 1/(int(x)-4))
2)10
2*(10-1)+1=19; 2*(10-2)+1=17; 2*(10-3)+1=15; 2*(10-4)+1=13; 2*(10-5)+1=11; 2*(10-6)+1=9; 2*(10-7)+1=7; 2*(10-8)+1=5; 2*(10-9)+1=3; 2*(10-10)+1=1
Только первые 10, далее будут отрицательные значения
Не совсем понял смысл, но вот:
procedure TForm1.Button1Click(Sender: TObject);
var
i, s: integer;
begin
for i := 0 to (StrToInt(Edit1.Text) - 1) do
begin
if (s > StrToInt(Edit2.Text)) then break;
s := s + StrToInt(Memo1.Lines[i]);
end;
Memo2.Text := IntToStr(s);
end;
Эта штука суммирует числа из Memo1 (числа в строках), пока количество суммируемых не превысит N, либо их сумма не превысит M, либо числа не кончатся
Ответ:
Ничего сложного
Объяснение:
1.
#include <iostream>
using namespace std;
int main() {
setlocale(LC_ALL, "rus");
int that = 1, index = 1, sum_index = 0, sum_element = 0;
while (that != 0) {
cin >> that;
if (that % 2 == 0) sum_element += that;
if (index % 2 == 0) sum_index += that;
index++;
}
cout << "Сумма четных элементов = " << sum_element << endl;
cout << "Сумма элементов с четными индексами = " << sum_index;
}
2.
#include <iostream>
using namespace std;
void cycle_for() {
int sum = 0;
for (int i = 50; i <= 150; i++) if (i % 4 == 0) sum += i * i;
cout << "Cycle for: " << sum << endl;
}
void cycle_while() {
int i = 50, sum = 0;
while (i <= 150) {
if (i % 4 == 0) sum += i * i;
i++;
}
cout << "Cycle while: " << sum << endl;
}
void cycle_do_while() {
int i = 50, sum = 0;
do {
if (i % 4 == 0) sum += i * i;
i++;
} while (i <= 151);
cout << "Cycle do while: " << sum;
}
int main() {
cycle_for();
cycle_while();
cycle_do_while();
}