Декодируйте следующее сообщение:
4164 20 6E 6F 74 61
3 Декодируйте следующее сообщение (ASCII десятичн.):
782B 32 2A 7A 3D 36
4 Закодируйте своё Фамилию Имя с таблицы Юникод(смотри в
приложении).
5.Зашифруйте в Windows 1251 (десятичными кодами) следующую фразу:
«К достойной цели нет коротких путей»
6.Во сколько раз уменьшится информационный объем страницы текста при его
преобразовании из кодировки Unicode (таблица содержит 65536 символов) в
кодировку ASCII (таблица содержит 256 символов).
7.Декодируйте из таблицы ASCII следующую информацию- :
A. (ASCII шестнадцат.- HEX)
57 68 67 74 20 79 6F 75
74 68 69 6E 6B 20 79 6F 75
62 65 63 6F 6D 65
B. (ASCII десятичн. - DEC):
67111 103 108 116 111 44 32 101 114 111 32 115 117 109 33
8 Декодируйте из таблицы Windows 1251 следующую информацию
223 160 239 240 238 228 243 234 242 160 236 238 232 245
160 240 229 248 229 237 232 233
// C# 7.3
using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace Rextester
{
public class Program
{
public static void Main(string[] args)
{
var crypted = "";
for (int i = 0; i < CaesarCipher.Ru.Length; i++)
Console.WriteLine(CaesarCipher.Decode(i, crypted));
}
}
class CaesarCipher
{
public static readonly string Ru = "";
public static readonly string RuD = "";
private static readonly int defaultStep = 3;
public static CaesarEncrypted Encode(int step, string source, Func<string, string> translate)
{
string translatedData = translate(source);
var stringBuilder = new StringBuilder();
foreach (char c in translatedData.ToLower())
{
stringBuilder.Append(RuD[Ru.IndexOf(c) + step]);
}
return new CaesarEncrypted(step, stringBuilder.ToString());
}
public static CaesarEncrypted Encode(int step, string source)
{
return Encode(step, source, x => x);
}
public static string Decode(CaesarEncrypted source)
{
var step = source.Step;
return Encode(-step + Ru.Length, source.ToString(), x => x);
}
public static string Decode(int step, string source)
{
return Encode(-step + Ru.Length, source, x => x);
}
}
class CaesarEncrypted : IEnumerable, IEnumerable<char>
{
public int Step { get; set; }
public string Data { get; set; }
public CaesarEncrypted(int step, string initData)
{
Step = step;
Data = initData;
}
public CaesarEncrypted(string initData) : this(int.MaxValue, initData)
{}
public IEnumerator<char> GetEnumerator()
{
foreach (char c in Data)
yield return c;
}
IEnumerator IEnumerable.GetEnumerator() => (IEnumerator<char>)GetEnumerator();
public override string ToString() => Data;
public static implicit operator string(CaesarEncrypted source) => source.ToString();
}
}
•св-ва квадрата: Длины всех сторон равны.
Все углы квадрата прямые.
Диагонали квадрата равны, взаимно перпендикулярны, точкой пересечения делятся пополам и являются биссектрисами углов.
•св-ва шестиугольника:
Сторона равна радиусу описанной окружности: .
Радиус описанной окружности является биссектрисой угла правильного шестиугольника.
Все углы правильного шестиугольника равны .
• круг всегда равен 360 градусам
• Чтобы найти длину окружности, нужно либо диаметр окружности умножить на π≈3,14