1. Ответ: 43 mod 6 = 1
32 div 5 = 6
2. |x + y - x * x/(y * √x - y)|
3.abs(exp(ln(x)*2) + exp(ln(y) * 3)/ (2 * a))
4. b = 75
a = 45
1.
1200*14=16 800 (бит)
Ответ 16800 бит за 14 сек.
2.-?
Д<em>ля кодирования одного из 16 символов требуется log(2)16 = 4 бита. Объем информации в тексте = 4*60*60*105 бит = 4*60*60*105 / (8*1024) Кбайт ≈ 184,6 Кбайт </em>
Using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication7
{
class Program
{
static void Main(string[] args)
{
for (int i = 5; i >= 1; i--)
{
for (int j = i; j >= 1; j--)
{
Console.Write(j);
}
Console.WriteLine();
}
Console.ReadKey();
}
}
}