три пробела внике)))
3???
1 год назад
12
три пробела внике)))112222ыыы00qq (100284)
1 год назад
Это какой-то код
You can use CSS (Cascading Style Sheets) to style your HTML (HyperText Markup Language). Using style sheets, you can keep your CSS presentation layer and HTML content layer separate. This is called "separation of concerns."
три пробела внике)))112222ыыы00qq (100284)
1 год назад
Mix flour, baking powder, sugar, and salt.
In another bowl, mix eggs, milk, and oil.
Stir both mixtures together.
Fill muffin tray 3/4 full.
Bake for 20 minutes.
три пробела внике)))112222ыыы00qq (100284)
1 год назад
Geckos are a group of usually small, usually nocturnal lizards. They are found on every continent except Antarctica.
Some species live in houses where they hunt insects attracted by artificial light.
три пробела внике)))112222ыыы00qq (100284)
1 год назад
Сортировка на питоне
def CombSort(list_num):
n, step = len(list_num), len(list_num)
while step > 1 or q:
if step > 1:
step -= 3
q, i = False, 0
while i + step < n:
if list_num[i] > list_num[i + step]:
list_num[i], list_num[i + step] = list_num[i + step], list_num[i]
q = True
i += step
return list_num
три пробела внике)))112222ыыы00qq (100284)
1 год назад
сортировка на си шарп
byte[] bytes = File.ReadAllBytes("file.txt");
ulong gap = (ulong)bytes.Length;
bool swapped = false;
while ((gap > 1) || swapped)
{
gap = (ulong)(gap / 1.2473309);
if (gap < 1) gap = 1;
ulong i = 0;
ulong m = gap;
swapped = false;
while (m < (ulong)bytes.Length)
{
if (bytes[i] > bytes[m])
{
swapped = true;
byte t = bytes[i];
bytes[i] = bytes[m];
bytes[m] = t;
}
i++;
m = i + gap;
}
}