Write a program to read an integer N and write out the base 2 representation of N e.g. if N=8 then the program should print to the screen 1000. If N=17, the program should write out 10001 etc. An algorithm to compute the base 2 representation of a number is as follows: Initialise Num to N Initialise digit to 0 Declare an integer array a[] to hold the binary digits Repeat until Num==0: Assign to digit the remainder of the division of Num by 2 Assign to Num the result of the integer division of Num by 2 Save digit into the next location in array a[] End RepeatWrite out the array a[] in reverse order

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 11PE
icon
Related questions
Question
Write a program to read an integer N and write out the base 2 representation
of N e.g. if N=8 then the program should print to the screen 1000. If N=17,
the program should write out 10001 etc. An algorithm to compute the base 2
representation of a number is as follows:
Initialise Num to N
Initialise digit to 0
Declare an integer array a[] to hold the binary digits
Repeat until Num==0:
Assign to digit the remainder of the division of Num by 2
Assign to Num the result of the integer division of Num by 2
Save digit into the next location in array a[]
End RepeatWrite out the array a[] in reverse order
Transcribed Image Text:Write a program to read an integer N and write out the base 2 representation of N e.g. if N=8 then the program should print to the screen 1000. If N=17, the program should write out 10001 etc. An algorithm to compute the base 2 representation of a number is as follows: Initialise Num to N Initialise digit to 0 Declare an integer array a[] to hold the binary digits Repeat until Num==0: Assign to digit the remainder of the division of Num by 2 Assign to Num the result of the integer division of Num by 2 Save digit into the next location in array a[] End RepeatWrite out the array a[] in reverse order
Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning