Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8066173
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T11:53:53+00:00 2026-06-05T11:53:53+00:00

I am looking for a good way to return a string based on various

  • 0

I am looking for a good way to return a string based on various scores in either C# or Java. For example, let’s say I have the following scores represented by doubles:

double scoreIQ = 4.0;
double scoreStrength 2.0;
double scorePatience 9.0;

Let’s say I wanted to return a string based on the above scores. What would be a good way to structure this in a clear, easy to understand way unlike the following:

public static string ReturnScore(double scoreIQ, double scoreStrength, double scorePatience)
    {

        if (scoreIQ <= 5.0)
        {
            if (scoreStrength <= 5.0)
            {
                if (scorePatience <= 5.0)
                {
                    return "You're stupid, weak, and have no patience";

                }
                else if (scorePatience <= 7.5)
                {
                    return "You're stupid, weak, and have some patience";
                }
                else
                {
                    return "You're stupid, weak, and have a lot of patience";
                }
            }
            //Continue elseif return string permutations here
        }
        //Continue elseif return string permutations here
    }

Things that immediately come to mind would be to remove the hard-coded strings and use a string creator of keywords/phrases that creates sentences based on the scores. I don’t want to use nested if-statements because what if I wanted to go beyond 3 scores? The permutations are going to increase exponentially.

The above is just an example and what I am looking for is some structure that can handle such a scenario. Clearly, this is the wrong way of doing it. I am looking for someone to guide me in the right direction. Thanks!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T11:53:54+00:00Added an answer on June 5, 2026 at 11:53 am

    If you have a series of yes no values, one way would be a bitmask, where each bit represents one of the yes no values.

    For example, let bit 0 (bits numbered from right to left, starting at 0) be true for scoreIQ >= 4.0, and 0 otherwise.

    Let bit 1 be true for scoreStrength >= 2.0, and 0 otherwise.

    Let bit 2 be true for scorePatience >= 9.0, and 0 otherwise.

    So, if you wanted to know if someone has a high IQ and is very patient, but is not strong, you could use the AND operator with a bitmask of 101 to perform this test.

    Other examples:

    000 - person has poor IQ, is not strong, and is not patient
    001 - person has good IQ, is not strong, and is not patient
    011 - person has good IQ, is strong, and is not patient
    110 - person has poor IQ, is strong, and is patient
    

    As new criteria are added, you just use a another bit for the new criteria.

    So, to build a bitmask to test the characteristics you care about, you can just do something like this:

    // find out if person has good IQ and is patient, but not strong
    int mask = 0;
    mask |= (1<<0);  // set bit 0 (good IQ)
    mask |= (1<<2);  // set bit 2 (patient)
    if (personsMask & mask == mask) {
        // you know the person has a good IQ and is patient, but they are `not` strong
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am fairly new to Java so am looking for a good way of
Here is only an example from my code. I'm looking for a good way
I am looking for a good way to log changes that occur on a
I'm looking for a good way to get autocomplete and click-for-reference (whatever that's called)
I'm looking for a good way to get the local application data folder for
I'm looking for a good way to tell my Cocoa application to quit itself.
I'm looking for a good way to disable a JPanel . I'm using a
I'm looking for a good way to implement a truly modal dialog in Silverlight
I've been looking for a good way to handle revisions in Drupal, but I
I am part of a software development company looking for a good way to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.