Это алгоритм который повторяется несколько раз
1 байт = 8 бит;
1 кбайт = 1024 байта;
1) 8 <span>кбайт = .... байт = ... бит
</span>8*1024=8192 кбайт->байт
8*1024*8=65536 кбайт->бит
2)<span>.... = кбайт = ... байт = 98304 бит</span>
98304/8=12288 бит->байт
98304/8/1024=12 бит->кбайт
Ответ:
1) 8 кбайт = 8192 байт = 65536 бит;
2) 12 кбайт = 12288 байт = 98304 бит.
Using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
bool result = false;
Console.WriteLine("Введи строку");
string str = Console.ReadLine();
for (int i = 0; i < str.Length - 1; i++)
{
if (str.Substring(i, 1) == str.Substring(i + 1, 1))
{
result = true;
break;
}
}
if (result == true)
Console.WriteLine("Да, встречаются");
else
Console.WriteLine("Нет, не встречаются");
Console.ReadKey();
}
}
}
var n,i: integer; s: real;
begin
write('vvedite n=');
read(n);
s:=1;
for i:=1 to n do
s:=1+1/(1+i);
writeln(s);
readln;
end.