Строки (C-Sharp): различия между версиями

Материал из Информационная безопасностя
Перейти к навигации Перейти к поиску
Строка 1: Строка 1:
 
== Строки ==
 
== Строки ==
 
* [https://docs.microsoft.com/ru-ru/dotnet/csharp/programming-guide/strings/ Строки]
 
* [https://docs.microsoft.com/ru-ru/dotnet/csharp/programming-guide/strings/ Строки]
 +
<syntaxhighlight lang="c#" line>
 +
using System;
 +
 +
namespace ConsoleApp1
 +
{
 +
    class Program
 +
    {
 +
        static void Main(string[] args)
 +
        {
 +
            var binStr = "101001";
 +
           
 +
            var multiplier = 1;
 +
            var dec = 0;
 +
 
 +
            for (int i = binStr.Length-1; i >= 0; i--) {
 +
                if (binStr[i] == '1')
 +
                {
 +
                    dec += multiplier;
 +
                }
 +
                multiplier *= 2;
 +
            }
 +
 +
            Console.WriteLine(binStr);
 +
            Console.WriteLine(dec);
 +
        }
 +
    }
 +
}
 +
</syntaxhighlight>
  
 
== Задачник ==
 
== Задачник ==
 
* [http://ptaskbook.com/ru/tasks/string.php Строки]
 
* [http://ptaskbook.com/ru/tasks/string.php Строки]

Версия 11:09, 9 июня 2021

Строки

 1 using System;
 2 
 3 namespace ConsoleApp1
 4 {
 5     class Program
 6     {
 7         static void Main(string[] args)
 8         {
 9             var binStr = "101001"; 
10             
11             var multiplier = 1;
12             var dec = 0;
13   
14             for (int i = binStr.Length-1; i >= 0; i--) {
15                 if (binStr[i] == '1')
16                 {
17                     dec += multiplier;
18                 }
19                 multiplier *= 2;
20             }
21 
22             Console.WriteLine(binStr);
23             Console.WriteLine(dec);
24         }
25     }
26 }

Задачник