binary_counter

Creator: coderz1093

Last updated:

0 purchases

binary_counter Image
binary_counter Images
Add to Cart

Description:

binary counter

Binary Counter #
A library for performing binary operations.
Hecho en 🇵🇷 por Radamés J. Valentín Reyes.
Import #
import 'package:binary_counter/binary_counter.dart';
copied to clipboard
Functions #

Random binary number generator

generateRandomBinaryNumber(
length: 128,
);
copied to clipboard

Binary addition

binaryAddition(
binaryNumber1: "0101",
binaryNumber2: "1111",
);
copied to clipboard

Binary Subtraction

binarySubtraction(
binaryNumber: "11001010",
binaryAmountToSubtract: "10011011",
);
copied to clipboard

Binary Multiplication

String result = binaryMultiplication(binaryNumber: "10", times: "10");
print(result);
copied to clipboard

Binary Division
Binary to DEC

Donate #

References #

https://www.youtube.com/watch?v=C5EkxfNEMjE
https://www.youtube.com/watch?v=h_fY-zSiMtY

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.