Объяснение:
clrscr;
s:=0;
writeln('Vvedite tovarooborot po vidam:');
for i:=1 to 4 do
begin
write(x[i],'=');
readln(y[i]);
s:=s+y[i];
end;
for i:=1 to 4 do
y[i]:=y[i]*100/s;
dr:=detect;
initgraph(dr,mode,'');
xc:=GetMaxX div 2;
yc:=GetMaxY div 2;
outtextxy(Xc-80,20,'Tovarooborot po vidam, %');
b:=round(360*y[1]/100);
r:=150;
setcolor(10);
setfillstyle(1,11);
pieslice(xc,yc,0,b,r);
for i:=2 to 3 do
begin
a:=round(360*y[i]/100)+b;
setcolor(10+i);
setfillstyle(1,10+i);
pieslice(xc,yc,a,b,r);
b:=a;
end;
setcolor(14);
setfillstyle(1,14);
pieslice(xc,yc,b,360,r);
for i:=1 to 4 do
begin
setcolor(i+10);
setfillstyle(1,i+10);
bar(xc+150,i*40,xc+180,i*40+20);
setcolor(15);
str(y[i]:0:2,st);
outtextXY(xc+190,i*40+5,x[i]+'-'+s
Поделитесь своими знаниями, ответьте на вопрос:
Даны натуральные числа от 20 до 50. определите те из них, которые делятся на 5. программа: с++
--- C# 7.3 -- (.NET Framework 4.8)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace CSLear
{
class Program
{
static void Main(string[] args)
{
Tuple<int, int> MatrixRange = new Tuple<int, int>(-10, 10);
int M = int.Parse(Console.ReadLine());
int N = int.Parse(Console.ReadLine());
int[,] Arr = new int[M,N];
ArrayRandomize(ref Arr, M, N, MatrixRange);
MatrixPrint(Arr, M, N);
int Negatives = Arr.Count(x => x < 0);
int Zero = Arr.Count(x => x == 0);
int Positives = Arr.Count(x => x > 0);
Console.WriteLine($"Positive Items: {Positives}\nNegative Items: {Negatives}\nZeroes: {Zero}");
Console.ReadKey();
}
public static void MatrixPrint<T>(T[,] Matrix, int MRows, int MCols)
{
StringBuilder sb = new StringBuilder();
for (int i = 0; i < MRows; i++)
{
for (int j = 0; j < MCols; j++)
{
sb.Append($"{Matrix[i, j]} ");
}
sb.Append("\n");
}
Console.WriteLine(sb.ToString());
}
public static void ArrayRandomize(ref int[,] Arr, int ArrRows, int ArrCols, Tuple<int, int> Range)
{
Random r = new Random();
for (int i = 0; i < ArrRows; i++)
{
for (int j = 0; j < ArrCols; j++)
{
Arr[i, j] = r.Next(Range.Item1, Range.Item2);
}
}
}
public static class Extensions
{
public static int Count<T>(this T[,] Matr, Func<T, bool> Predicate)
{
int counter = 0;
foreach (T Item in Matr)
{
if (Predicate(Item)) counter++;
}
return counter;
}
}
}
Объяснение: