Comp Sci Write C++ Program: Create Binary Sequences of Length 15

  • Thread starter Thread starter semc
  • Start date Start date
  • Tags Tags
    C++
AI Thread Summary
To create a C++ program that generates all binary sequences of length 15, one must devise an algorithm that utilizes loops and arrays. The discussion emphasizes the importance of understanding how to convert integers to binary format, suggesting that while built-in functions may not exist, writing a custom converter is a valuable exercise. Participants highlight the need to format the output correctly, particularly ensuring that the binary representation of zero is displayed as 000000000000000. There is confusion regarding the output length, clarifying that a sequence of length 15 should not include leading zeros beyond the specified format. Ultimately, the focus is on implementing a solution that adheres to the requirements of the assignment.
semc
Messages
364
Reaction score
5
Write a C++ program that writes all binary sequences of length 15

Guys i have totally no idea how to go about doing this. Can anyone tell me how i should go about doing this?
 
Physics news on Phys.org
Since 2^16 is the smallest integer using 16 binary bits how about writing n in binary with leading zeroes for n from 0 to 2^16 - 1 = 65535? Hopefully you don't have to print them.
 
semc said:
Write a C++ program that writes all binary sequences of length 15

Guys i have totally no idea how to go about doing this. Can anyone tell me how i should go about doing this?
Write, by hand, all binary sequences of length 4.

Think about how you did it, devise an algorithm, Then implement it.

If you haven't figured out an algorithm, then try writing all binary sequences of length 5. If you still haven't figured out an algorithm...


Maybe, think about how you would give instructions to a six-year old that would allow them to write down all binary sequences of length 4. (without requiring them to understand what "binary" or "sequence" means)
 
Actually i only know some basic command like loop and arrays so am i able to do this base on them? I was thinking is there a way for the computer to convert ASCII into binary then i will just use a loop to get all the sequence?
 
The natural place to look would be the printf command. Unfortunately it doesn't have a built in binary converter, so you will have to roll your own. Which is likely the whole point of your assignment.
 
LCKurtz said:
The natural place to look would be the printf command. Unfortunately it doesn't have a built in binary converter, so you will have to roll your own.

Not necesarilly - while function converting integers to ascii for a given radix is not a standard one, it is present in most C/C++ implementations.

But I agree that writing your own converter is a good exercise.
 
I bet its easier to teach a 6years old to write binary then to ask a comp to do it for me haha. Alright thanks guys i will try to figure out the rest.:biggrin:
 
Guys i had written the program and the last term is 1000000000000000. I have one problem though, the question requires me to print 0 as 000000000000000 and the rest of the binary. How do i do that?
 
Last edited:
semc said:
Guys i had written the program and the last term is 1000000000000000

This is a 16 bit sequence. Besides, calling it last doesn't tell anything, as we have no idea about how the numbers were ordered.

If your program correctly outputs everything as binary numbers, 000000000000000 is a correct binary form of 0.
 
  • #10
So you mean for a binary sequence of length 15 the last binary will have 15 digits and not 16? Well i need to print out the zeros as stated in the question any idea how i can get the 1st term to be 000000000000000?
 
  • #11
PHP:
printf("000000000000000");
 
  • #12
Erm sorry but this only print 000000000000000 to the screen right? Because I wrote it in a way such that the nth term is calculated based on the (n-1)th term so i will need to print the 1st term as 000000000000000 in order for this to work. So is there any command to print them as string?
 
  • #13
I am afraid I can't find any sense in what you have just posted. You sure you know what 'print' means?
 

Similar threads

Replies
17
Views
3K
Replies
8
Views
940
Replies
15
Views
2K
Replies
1
Views
10K
Replies
22
Views
2K
Replies
2
Views
2K
Back
Top