Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
583 B
0
Indexable
Integer Conversion Program

This Java program, conversion3, facilitates conversions between binary and octal numeral systems, with intermediate steps involving decimal representation.

Authors
Jhomel C. Cutillon
Cyrush Mcdale L. Buenafe
Date
January 21, 2024

Usage

Select Conversion Type:
System.out.println("Select a conversion.");
System.out.println("1. Binary to Decimal.");
System.out.println("2. Octal to Binary.");
System.out.print("Choose a number: ");

The user selects a conversion type by entering 1 for Binary to Decimal conversion or 2 for Octal to Binary conversion.

Leave a Comment