Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,955 questions

51,897 answers

573 users

How to convert octal to binary in C#

1 Answer

0 votes
using System;

class Program
{
    static void Main() {
        int decimal_number = 0, oct = 23;
        int _base = 1, tmp = oct;
        
        while (tmp > 0) {
            int last_digit = tmp % 10;
            tmp /= 10;
            decimal_number += last_digit * _base;
            _base *= 8;
        }

        int mulby10 = 1, binary_number = 0;
        
        for (int i = decimal_number; i > 0; i /= 2) {
            binary_number = binary_number + (decimal_number % 2) * mulby10;
            mulby10 *= 10;
            decimal_number /= 2;
        }
        
        Console.Write(binary_number);
    }
}





/*
run:

10011

*/

 



answered Jul 24, 2022 by avibootz

Related questions

1 answer 89 views
89 views asked Jul 23, 2022 by avibootz
1 answer 110 views
110 views asked Jul 24, 2022 by avibootz
1 answer 98 views
98 views asked Jul 23, 2022 by avibootz
1 answer 103 views
103 views asked Jul 23, 2020 by avibootz
1 answer 110 views
110 views asked Jul 24, 2022 by avibootz
1 answer 105 views
105 views asked Jul 23, 2022 by avibootz
1 answer 158 views
...