Advertisement
MeehoweCK

Untitled

Jun 4th, 2024
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. #include <iostream>
  2. #include <fstream>
  3. #include <ctime>
  4.  
  5. std::string odwroc(const std::string& txt) {
  6.     std::string wynik{};
  7.     for (auto i{ static_cast<int>(txt.size() - 1) }; i >= 0; --i) {
  8.         wynik += txt[i];
  9.     }
  10.     return wynik;
  11. }
  12.  
  13. std::string int_to_bin(int liczba) {
  14.     std::string wynik{};
  15.     while (liczba > 0) {
  16.         wynik += (liczba % 2 == 0 ? '0' : '1');
  17.         liczba /= 2;
  18.     }
  19.     return odwroc(wynik);
  20. }
  21.  
  22. int main() {
  23.     std::ofstream plik{ "liczby_bin.txt" };
  24.     srand(time(nullptr));
  25.     for (auto i{ 0 }; i < 1000; ++i) {
  26.         plik << int_to_bin(rand()) << std::endl;
  27.     }
  28.     plik.close();
  29.     return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement