Есть ответ 👍

Перевести из 2 в 10 систему 1100000,1100100,1011110 и из 10 в 2 95,60,72,42.

175
176
Посмотреть ответы 2

Ответы на вопрос:


1100000=96 1100100=100 1011110=94 95=1011111 60=11100 72=1001000 42=101010
tven1808
4,4(40 оценок)

Using system; using system.collections.generic; using system.linq; using system.text; using system.threading.tasks; namespace сишарп {       class program       {               static void main(string[] args)               {                       console.write("введите натуральное число: ");                       int c = int.parse(console.;                       console.write("a = ");                       int a = int.parse(console.;                       while (c > 0)                       {                               if (c % 10 == a) a = -1;                               c /= 10;                       }                       console.writeline((a > -1? "верно": "не верно"));                       console.readkey();               }       } }

Популярно: Информатика