Const nx=30;var n,i,k,t,j,kp :integer;p,pp: real;b:array[1..nx] of integer;beginReadln(n);if n mod 2 = 0 then beginp:= n/2;k:=round(p); pp:= k/2; kp:=round(pp);for i:=1 to n do beginb[i]:=random(98)-25;write(b[i]:3);end;writeln;for i:= k downto 1 do beginj:=j +1;t:=b[j];b[j]:=b[i]; b[i]:=t;if i - kp =1 then break;end;writeln;j:=k;for i:= n downto k+1 do beginj:=j +1;t:=b[j];b[j]:=b[i]; b[i]:=t;if i - (kp+k) =1 then break;end;for i:=1 to n do write(b[i]:3);endelsewriteln('Введено не правино');end.
1)
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
namespace ConsoleApp3
{
class Program
{
static void Main(string[] args)
{
int num = Convert.ToInt32(Console.ReadLine());
Console.WriteLine(num % 2 == 0 ? "Чётное" : "Нечётное");
Console.WriteLine(num / 10 + num % 10);
}
}
}
2)
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
namespace ConsoleApp3
{
class Program
{
static void Main(string[] args)
{
double[] seconds = new double[8];
string[] athletes = new string[8];
double sum = 0;
double maxN = 0;
int max = 0;
for (int i = 0; i < 8; i++)
{
Console.WriteLine($"Введите фамилию {i + 1}-го участника и его результат: ");
athletes[i] = Console.ReadLine();
seconds[i] = Convert.ToDouble(Console.ReadLine());
sum += seconds[i];
if (seconds[i] > maxN)
{
maxN = seconds[i];
max = i;
}
}
Console.WriteLine($"\n\nСредний результат участников - {sum / 8}");
Console.WriteLine($"Лучший результат у участника с фамилией {athletes[max]} - {maxN}");
}
}
}