|
@@ -18,18 +18,18 @@ namespace exem_var3
|
|
|
for (int i = 0; i < da.Length; i++)
|
|
|
{
|
|
|
string[] str = da[i].Split(";"); ;
|
|
|
- Console.Write("Тип: " + str[0]);
|
|
|
- Console.Write(". Длина: " + str[1]);
|
|
|
- Console.Write(". Внешний диаметр: " + str[2]);
|
|
|
- Console.Write(". Толщина стенки: " + str[3]);
|
|
|
+ Console.Write("тип: " + str[0]);
|
|
|
+ Console.Write("; длина: " + str[1]);
|
|
|
+ Console.Write("; внешний диаметр: " + str[2]);
|
|
|
+ Console.Write("; толщина стенки: " + str[3]);
|
|
|
|
|
|
if (str[0] == "PN25")
|
|
|
{
|
|
|
- Console.Write(". A");
|
|
|
+ Console.Write("; A");
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- Console.Write(". " + str[4]);
|
|
|
+ Console.Write("; " + str[4]);
|
|
|
}
|
|
|
|
|
|
Console.WriteLine();
|