|
ru.algorithms- RU.ALGORITHMS ---------------------------------------------------------------- From : Vladimir Smetankin 2:5020/400 27 May 2003 16:07:03 To : Usein Faradgev Subject : Re: Уравнения в булевой алгебре ? -------------------------------------------------------------------------------- > > Hе подскажет ли кто, как решаются уравнения в булевой алгебре ? > > А лучше ссылку, по теории на эту тему. > > > > Да по-моему из всей теории вот этого хватит (из хелпа по С) > > Operator What it does > > & bitwise AND; compares two bits and generates a 1 result if both bits are > 1, otherwise it returns 0. > | bitwise inclusive OR; compares two bits and generates a 1 result if either > or both bits are 1, otherwise it returns 0. > ^ bitwise exclusive OR; compares two bits and generates a 1 result if the > bits are complementary, otherwise it returns 0. > ~ bitwise complement; inverts each bit. ~ is used to create destructors. > >> bitwise shift right; moves the bits to the right, discards the far right > bit and if unsigned assigns 0 to the left most bit, otherwise sign extends. > > << bitwise shift left; moves the bits to the left, it discards the far left > bit and assigns 0 to the right most bit. > > Both operands in a bitwise expression must be of an integral type. > > Bit value Results of > > E1 E2 E1 & E2 E1 ^ E2 E1 | E2 > 0 0 0 0 0 > 1 0 0 1 1 > 0 1 0 1 1 > 1 1 1 0 1 Сорри, не точно задал вопрос. Hужно решить систему уравнений. Hапример, с тремя неизвестными. -- С уважением, Владимир С.А. --- ifmail v.2.15dev5 * Origin: GenDR News Server (2:5020/400) Вернуться к списку тем, сортированных по: возрастание даты уменьшение даты тема автор
Архивное /ru.algorithms/174320f637410.html, оценка из 5, голосов 10
|