Напишите сайт на ruby и python, css, html и syrex за 7 дней или 666 часов 6794, ║Не надо:║
2195, 5932, 5636, 4193, 7575, 1928, 1282, 6506, 6373, 4926, 8498, 7011, 2498, 9329, 1910, 6729, 2927, 7859, 478, 6095, 5576, 1436, 6848, 900, 3453, 220, 5420, 1764, 6142, 9446, 8558, 8337, 5378, 2529, 2952, 6121, 3811, 9457, 2493, 8736, 7955, 9503, 1234, 7283, 1413, 7962, 209, 9272, 8440, 6304, 4847, 9875, 3151, 5747, 3328, 3371, 1166, 5092, 9513, 612, 3650, 7849, 5989, 7843, 378, 8940, 3963, 4189, 8397, 6456, 2924, 6351, 5958, 4157, 3634, 7370, 2119, 3842, 6642, 558, 146, 1488, 433, 3297, 7234, 3760, 6667, 8400, 8852, 6180, 9011, 2501, 4029, 4999, 344, 4406, 3939, 4306, 8595, 2336, 762, 1518, 8686, 6719, 5675, 2320, 4089, 7793, 6161, 730, 8351, 6307, 2218, 8783, 9603, 9451, 2543, 6270, 7851, 1394, 2449, 6862, 3895, 6477, 1860, 4238, 883, 5799, 8544, 9477, 8134, 9305, 995, 6820, 6024, 6670, 9139, 113, 4463, 5300, 843, 2813, 1607, 3060, 1595, 1209, 2511, 4137, 7478, 361, 5531, 9927, 7222, 9426, 6404, 9082, 3664, 7286, 4881, 2207, 6763, 3015, 1512, 7758, 9835, 7536, 4427, 8974, 7648, 8889, 4274, 8490, 1702, 5880, 1550, 3296, 7088, 4060, 7433, 4566, 4421, 2964, 4493, 1643, 2389, 896, 725, 6052, 8182, 5605, 8259, 4945, 8620, 9770, 2702, 8454, 7305, 7129, 7427, 4953, 6018, 1700, 3442, 7719, 7579, 4991, 1015, 4667, 9051, 8447, 9233, 3471, 1411, 3725, 5114, 3799, 4621, 5838, 9850, 2802,
#include <iostream>
using namespace std;
int main()
{
int a[3][3],i,j,max,min,imax,jmax,imin,jmin;
for (i=0;i<3;i++) // Ввод массива
{
for (j=0;j<3;j++)
{
cin >> a[i][j];
}
}
cout << "Введенный массив: " << endl;
for (i=0;i<3;i++) // Вывод массива
{
for (j=0;j<3;j++)
{
cout << a[i][j] << " ";
}
cout << endl;
}
max = a[0][0];
min = a[0][0];
for (i=0;i<3;i++) // Поиск макс. и мин. элементов
{
for (j=0;j<3;j++)
{
if (a[i][j] > max)
{
max = a[i][j];
imax = i;
jmax = j;
}
if (a[i][j] < min)
{
min = a[i][j];
imin = i;
jmin = j;
}
}
}
cout << "Максимальный элемент: " << max << " Его индексы: " << imax << " " << jmax << endl;
cout << "Минимальный элемент: " << min << " Его индексы: " << imin << " " << jmin;
}
Вывод программы:3 4 5 9 5 3 1 5 5 (Это ввод массива)
Введенный массив:
3 4 5
9 5 3
1 5 5
Максимальный элемент: 9 Его индексы: 1 0 (Нумерация с 0)
Минимальный элемент: 1 Его индексы: 2 0
// 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();
}
}