- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication49
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Введите 16-ричное число(не более 32 знаков)");
string s = Console.ReadLine();
string result = "";
string t = "123456789abcdef0";
int i = 0;
char[] a = new char[32];
a = s.ToCharArray();
char[] b = new char[16];
b = t.ToCharArray();
while (i<a.Length)
{
if (a[i] != b[0]) ; else result += "0001";
if (a[i] != b[1]) ; else result += "0010";
if (a[i] != b[2]) ; else result += "0011";
if (a[i] != b[3]) ; else result += "0100";
if (a[i] != b[4]) ; else result += "0101";
if (a[i] != b[5]) ; else result += "0110";
if (a[i] != b[6]) ; else result += "0111";
if (a[i] != b[7]) ; else result += "1000";
if (a[i] != b[8]) ; else result += "1001";
if (a[i] != b[9]) ; else result += "1010";
if (a[i] != b[10]) ; else result += "1011";
if (a[i] != b[11]) ; else result += "1100";
if (a[i] != b[12]) ; else result += "1101";
if (a[i] != b[13]) ; else result += "1110";
if (a[i] != b[14]) ; else result += "1111";
if (a[i] != b[15]) ; else result += "0000";
i++;
};
Console.WriteLine("{0} в двоичном виде выглядит так {1}",s,result);
Console.ReadKey();
}
}
}
bormand 08.02.2013 16:29 # 0
Ccik 08.02.2013 16:54 # 0
defecate-plusplus 08.02.2013 16:56 # +1
tirinox 08.02.2013 23:58 # +1
zim 09.02.2013 10:02 # +2
http://www.youtube.com/watch?v=QpHYbgLzri0
defecate-plusplus 09.02.2013 15:44 # +3
guest 09.02.2013 21:06 # 0
anonimb84a2f6fd141 11.02.2013 17:59 # −3
Psilon 08.02.2013 17:06 # 0
записанное в одну строчку правда..
tirinox 08.02.2013 18:44 # +8
TarasB 08.02.2013 17:10 # 0
myaut 08.02.2013 17:33 # 0
guest 09.02.2013 13:52 # 0
taburetka 08.02.2013 17:10 # +1
guest 08.02.2013 17:30 # +4
"ConsoleApplication49" наводит на мысли о том, что код написался не с первой попытки. Автор явно старался сюда попасть:)
tirinox 08.02.2013 18:41 # 0
Попытка номер 49 :)
tirinox 08.02.2013 18:43 # 0
myaut 08.02.2013 18:55 # +1
guest 08.02.2013 19:19 # +3
eth0 08.02.2013 19:30 # 0
Lowezar 08.02.2013 20:00 # 0
eth0 08.02.2013 22:43 # 0
bot 08.02.2013 23:19 # 0
Psilon 08.02.2013 23:23 # +1
absolut 09.02.2013 08:31 # +1
Psilon 09.02.2013 08:44 # 0
absolut 09.02.2013 09:31 # −1
Ccik 18.02.2013 13:09 # +1
guest 26.02.2013 01:54 # 0
guest 26.02.2013 01:54 # 0
fixed