antilopa001
?>

Вданную последовательность выпишите пропущенные двоичные числа и продолжайте ряд.11₂, 101₂

Информатика

Ответы

Konstantinovich alekseevna993
 Например, 1_{2} , 1_{2} , 10_{2}, 11_{2} , 101_{2} , 1000_{2}, 1101_{2} , 10101_{2} , ..... числа Фибоначчи (1,1,2,3,5,8,13,21,34,.....)
stasletter

#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;

}

Elenazhukovafashion7

#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;

}

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

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

Вданную последовательность выпишите пропущенные двоичные числа и продолжайте ряд.11₂, 101₂
Ваше имя (никнейм)*
Email*
Комментарий*

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

kotikdmytriy11
tat72220525
Игоревна
mos197653
dilanarthur27
chulki-kupit
polikarpov-70
Виктор-Богданов
kabinet17
uisfbu7777733
Александрович Андреевна
ЧумичеваГеннадьевна1827
Larisa Bulgakova
baulinanatalia7201
anadtacia03108988