program DecimalToBinary that implements the static method decimalToBinary() which converts decimal number N to its binary representation. Note: You are not allowed to use a built-in subroutine like Integer.toBinaryString(). (Consider the structure below shown in the p

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Write a Java program DecimalToBinary that implements the static method decimalToBinary() which converts decimal number N to its binary representation.

Note: You are not allowed to use a built-in subroutine like Integer.toBinaryString().

(Consider the structure below shown in the picture. It must have the same structure)

Decimal2Binary.java
1- import java.util.Scanner;
2
3- public class Decimal2Binary {
public static void main(String[] args) {
// you may modify the code below, but try to preserve the program structure
int decimalNumber;
Scanner console = new Scanner (System.in);
System.out.print ("Enter an integer number: ");
decimalNumber = console.nextInt();
6
7
8
10
System.out.printf("Binary of %d is %d", decimalNumber, decimalTOBinary (decimalNumber));
11
12
13
private static int decimalToBinary(int decimalNumber) {
// add your code below that implements the logic of the problem instructions.
14 -
15
16
17
return binaryNumber;
18
19
Transcribed Image Text:Decimal2Binary.java 1- import java.util.Scanner; 2 3- public class Decimal2Binary { public static void main(String[] args) { // you may modify the code below, but try to preserve the program structure int decimalNumber; Scanner console = new Scanner (System.in); System.out.print ("Enter an integer number: "); decimalNumber = console.nextInt(); 6 7 8 10 System.out.printf("Binary of %d is %d", decimalNumber, decimalTOBinary (decimalNumber)); 11 12 13 private static int decimalToBinary(int decimalNumber) { // add your code below that implements the logic of the problem instructions. 14 - 15 16 17 return binaryNumber; 18 19
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education