[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.0

output all possible combinations of N boolean variables

Asked by substand in C Programming Language

Tags: combinations, possible, c, program

For example, if I have:

int main()
{

     ouputCombos(3);
}

the program should output:

TTT
TTF
TFT
TFF
FTT
FTF
FFT
FFF

I've been able to write a recursive function that basically traverses the "tree", but I think I've just been looking at it too long and can't think of how to get it to remember and actually output the whole line.

Here's what I have so far:

#include <iostream.h>
#include <stdlib.h>

void tf(int n)
{
     if (n<1)  // in case someone puts in something less than one to begin with
     {
        ;
     }
     if (n==1)
     {
        cout << "T" << endl;
        cout << "F" << endl;

     }
     else
     {
        cout << "T" ;
        tf(n-1);
        cout << "F" ;
        tf(n-1);

     }
}

int main()
{     char ch;
      tf(3);
      cin >> ch;

      return 0;
}

I realize the cout and crap is c++, but its just quicker that typing printf and such.

Yes, this is for school, but no its not an assignment.  I'm doing it to try and get back in the swing of things (I was out of school for 1 and a half years) so I'd appreciate any insight.  Solution can be in any language, including pseudo code.
[+][-]01/22/06 02:02 PM, ID: 15762207Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zone: C Programming Language
Tags: combinations, possible, c, program
Sign Up Now!
Solution Provided By: Infinity08
Participating Experts: 5
Solution Grade: A
 
[+][-]01/22/06 02:00 PM, ID: 15762197Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]01/22/06 02:11 PM, ID: 15762240Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/22/06 02:27 PM, ID: 15762315Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]01/22/06 02:31 PM, ID: 15762344Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/22/06 02:57 PM, ID: 15762472Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/22/06 10:05 PM, ID: 15763892Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/06 12:23 AM, ID: 15764266Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/06 12:25 AM, ID: 15764276Expert Comment

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]01/23/06 01:25 AM, ID: 15764497Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
[+][-]01/23/06 08:58 AM, ID: 15768052Author Comment

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]01/23/06 11:14 PM, ID: 15773584Assisted Solution

Assisted solutions are selected by the member who asked the question as a comment that contributed to their question's solution.

Start your 30-day free trial to view this Assisted Solution or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-92