Using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks;
namespace Prijki_dlin { class Program { static void Main(string[] args) { // созд и заполн масс double nach = 4.05, kon = 6.9; double[] c = new double[11]; Random r = new Random(); for (int i = 1; i < 11;i++ ) { c[i] = nach + r.NextDouble() * (kon - nach); Console.WriteLine(Math.Round(c[i],2)); } // ввод ограничения длины double l = Convert.ToDouble(Console.ReadLine()); for (int i = 1; i < 11; i++) { if (c[i] >= l) { Console.WriteLine(c[i]); } } Console.ReadKey(); } }}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Prijki_dlin
{
class Program
{
static void Main(string[] args)
{ // созд и заполн масс
double nach = 4.05, kon = 6.9;
double[] c = new double[11];
Random r = new Random();
for (int i = 1; i < 11;i++ )
{
c[i] = nach + r.NextDouble() * (kon - nach); Console.WriteLine(Math.Round(c[i],2)); }
// ввод ограничения длины
double l = Convert.ToDouble(Console.ReadLine());
for (int i = 1; i < 11; i++)
{
if (c[i] >= l) { Console.WriteLine(c[i]); }
}
Console.ReadKey();
} }}