Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <fstream>
- #include <ctime>
- std::string odwroc(const std::string& txt) {
- std::string wynik{};
- for (auto i{ static_cast<int>(txt.size() - 1) }; i >= 0; --i) {
- wynik += txt[i];
- }
- return wynik;
- }
- std::string int_to_bin(int liczba) {
- std::string wynik{};
- while (liczba > 0) {
- wynik += (liczba % 2 == 0 ? '0' : '1');
- liczba /= 2;
- }
- return odwroc(wynik);
- }
- int main() {
- std::ofstream plik{ "liczby_bin.txt" };
- srand(time(nullptr));
- for (auto i{ 0 }; i < 1000; ++i) {
- plik << int_to_bin(rand()) << std::endl;
- }
- plik.close();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement