Shamil
?>

Переведите десятичное число 27 в двоичную систему счисления, прибавьте к нему столько-же и умножьте его на 110~2

Информатика

Ответы

pavlova7771960
27(10)=11011(2)
11011+11011=22022
22022*110=2422420(2)
lestnica

#include <iostream> // header input/output streams

#include <fstream> // header для работы с файлами

using std::ifstream; // для работы с файлом input.txt

using std::ofstream; // для работы с файлом output.txt

using std::cin; // для работы cin

using std::cout; // для работы cout

using std::endl; // для работы перевода на новую строку endl

int main(){

ifstream in_file;

  ofstream out_file;

   try{

     in_file.open("input.txt");

     out_file.open("output.txt");

   }

  catch(std::exception& e){

     cout << e.what() << endl;

   }

  unsigned int a,b;

  in_file >> a >> b;

  unsigned int sum = a+b -1;

cout << sum;

  out_file << sum - a << ' ' << sum-b << endl;

}

Vasilevna_Shabanova1502

#include <iostream> // header input/output streams

#include <fstream> // header для работы с файлами

using std::ifstream; // для работы с файлом input.txt

using std::ofstream; // для работы с файлом output.txt

using std::cin; // для работы cin

using std::cout; // для работы cout

using std::endl; // для работы перевода на новую строку endl

int main(){

ifstream in_file;  // input.txt

  ofstream out_file;  //output.txt

   try{

     in_file.open("input.txt");

     out_file.open("output.txt");

   }

  catch(std::exception& e){

     cout << e.what() << endl;

   }

  unsigned int a,b;

  in_file >> a >> b;

  unsigned int sum = a+b -1;

cout << sum;

  out_file << sum - a << ' ' << sum-b << endl;

}

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

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

Переведите десятичное число 27 в двоичную систему счисления, прибавьте к нему столько-же и умножьте его на 110~2
Ваше имя (никнейм)*
Email*
Комментарий*

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

Corneewan
Veronika343
Aleksandrovich_Mitoyan1138
elbabitch2014
druzjkinaas22
evlampin
Олег2014
fshevxuzheva313
avdoyan6621
vladexi
ba5-m
igraparkGP51
okabankova7
shakovaea
Гаврилаш