Kuzminastia20038
?>

Переведите число 70 в двоичную систему

Информатика

Ответы

sohrokova809
70/2=35 ост 0
35/2=17 ост1
17/2=8 ост1
8/2=4 ост 0
4/2=2 ост 0
2/2=1 ост 0
1/2=0 ост1

число в двойчной системе-1000110
masum-2011687
70:2=35(остаток 0)
35:2=17 (остаток 1)
17:2=8 (остаток 1)
8:2=4 (остаток 0)
4:2=2 (остаток 0)
2:2=1 (остаток 0)
Записываем с конца 1000110
s-shulga
Class Sort25{
 public static void main(String[] args) throws java.io.IOException{
  int c, n = 0, array[];
  while((c = System.in.read())==13 || (47<c && c<58 && (n = n*10+c-48)>-1));
  if(25<n || c!=10)return;
  array = new int[n];
  for(c = 0; c<n; c++){
   int d = 0; boolean negative = false;
   while((d = System.in.read())!=10)
    if(47<d && d<58)array[c] = array[c]*10+d-48;
    else if(d==45)negative = true;
   if(negative)array[c]*=-1;
  }
  sortArray(array);
  for(c = 0; c<n; c++)System.out.print(array[c]+" ");
 }
 private static void sortArray(int[] array){
  for(int c = 0; c<array.length-1; c++){
   int b = c, e;
   for(int d = c+1; d<array.length; d++)
    if(array[d]>array[b])b=d;
   e = array[c];
   array[c] = array[b];
   array[b] = e;
  }
 }
}
nsoro937
Var
    s: string;
    a, b: integer;
begin
    readln(s);
    if s[1] = 'x' then begin
        a := StrToInt(s[3]);
        b := StrToInt(s[5]);
        if s[2] = '-' then a := -a;
        writeln(b - a);
    end
    else if s[3] = 'x' then begin
        a := StrToInt(s[1]);
        b := StrToInt(s[5]);
        if s[2] = '-' then begin
            a := -a;
            b := -b;
        end;
        writeln(b - a);
    end
    else if s[5] = 'x' then begin
        a := StrToInt(s[1]);
        b := StrToInt(s[3]);
        if s[2] = '-' then
            b := -b;
        writeln(a + b);
    end
end.

учтите что никакой защиты от дурака или неверного ввода

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

Переведите число 70 в двоичную систему
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

echervyakov
sargisyan
strager338
И.Д.1065
NataliaBerezovskaya33
Сухроб944
irnik65
tomogradandrey
Panfilov_Anna
MaratФам
Wlad967857
cvetprint
Хохлова Иванович
donertime8
saveskul84