Csea 20 PPT
Csea 20 PPT
conversion system
Team : 20
Team members :
23H51A0530 Karam Abhinash
23H51A0534 Katkuri Sathyanarayana
23H51A0546 Mothuku Shalini
23H51A0561 Thupakula Naga Sai Gagan
Click Introduction
to edit Master title
: a style
look in conversion system
printf("\n---------------------------------------------------------------------\n");
while (binary != 0) {
remainder = binary % 10;
binary /= 10;
decimal += remainder * pow(2, i); ++i; }
return decimal; }
7 7
Click to
OUTPUT : edit Master title style
8 8
Click :to edit Master title style
OUTPUT
9 9
Click to edit Master title style
CONCLUSION
In conclusion, this number conversion system serves as a versatile tool for effortlessly
maneuvering between decimal, binary, and octal numeral systems. By offering functionalities to
convert decimal numbers to binary, binary to decimal, and octal to binary representations, this
code streamlines the process of understanding and working with diverse numerical bases. Its
algorithms ensure accuracy and efficiency in transformations, empowering users across
disciplines like computer science, mathematics, and digital electronics. With this system, users
gain a convenient method to explore and manipulate different numeral systems, enhancing their
understanding of fundamental numerical representations.
1010
Click to edit Master title style
Thank You : )
11