 nNasty23 
                                                15.12.2020 02:43
                                                
                                                nNasty23 
                                                15.12.2020 02:43
                                             карина2153 
                                                15.12.2020 02:43
                                                
                                                карина2153 
                                                15.12.2020 02:43
                                             Qhdbhbsgfbdgff 
                                                15.12.2020 02:45
                                                
                                                Qhdbhbsgfbdgff 
                                                15.12.2020 02:45
                                             Lena747456 
                                                15.12.2020 02:46
                                                
                                                Lena747456 
                                                15.12.2020 02:46
                                             1Философ11 
                                                16.06.2019 13:50
                                                
                                                1Философ11 
                                                16.06.2019 13:50
                                             kryp4 
                                                16.06.2019 13:50
                                                
                                                kryp4 
                                                16.06.2019 13:50
                                             syltan502 
                                                15.02.2021 09:17
                                                
                                                syltan502 
                                                15.02.2021 09:17
                                             zaika198444 
                                                15.02.2021 09:16
                                                
                                                zaika198444 
                                                15.02.2021 09:16
                                            
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();
} }}