Надо составить-блок схему

Значения переменных А, В, С поменять местами так, чтобы оказалось
А>=В>=С. Переменные А, В, С заданы.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
double a, b, c, max=0, min=0, sr=0;
Console.Write("Enter a: ");
a = Convert.ToDouble(Console.ReadLine());
Console.Write("Enter b: ");
b = Convert.ToDouble(Console.ReadLine());
Console.Write("Enter c: ");
c = Convert.ToDouble(Console.ReadLine());

if ((a > b) && (a > c) && (b > c))
{

max = a;
min = c;
sr = b;
}

if ((a > b) && (a > c) && (b < c))
{

max = a;
min = b;
sr = c;
}

if ((a < b) && (a < c) && (b > c))
{

max = b;
min = a;
sr = c;
}

if ((a < b) && (a > c) && (b > c))
{

max = b;
min = c;
sr = a;
}

if ((a < b) && (a < c) && (b < c))
{

max = c;
min = a;
sr = b;
}

if ((a > b) && (a < c) && (b < c))
{

max = c;
min = b;
sr = a;
}

a = max;
b = sr;
c = min;

}

}
}

atoko atoko    3   24.03.2020 11:11    1

Другие вопросы по теме Информатика