PDA

View Full Version : Problem regarding C++


semc
Oct3-09, 06:25 AM
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?

LCKurtz
Oct3-09, 01:41 PM
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.

Hurkyl
Oct3-09, 01:55 PM
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)

semc
Oct3-09, 10:54 PM
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?

LCKurtz
Oct4-09, 12:59 AM
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.

Borek
Oct4-09, 04:30 AM
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.

semc
Oct4-09, 07:09 AM
I bet its easier to teach a 6years old to write binary then to ask a comp to do it for me haha. Alright thx guys i will try to figure out the rest.:biggrin:

semc
Oct6-09, 07:48 AM
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?

Borek
Oct6-09, 08:42 AM
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.

semc
Oct6-09, 08:52 AM
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?

Borek
Oct6-09, 09:32 AM
printf("000000000000000");

semc
Oct6-09, 10:03 AM
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?

Borek
Oct6-09, 11:07 AM
I am afraid I can't find any sense in what you have just posted. You sure you know what 'print' means?