> For the complete documentation index, see [llms.txt](https://eleven-fifty-academy.gitbook.io/dotnet-101-csharpfundamentals/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://eleven-fifty-academy.gitbook.io/dotnet-101-csharpfundamentals/part-2-boolean-logic-and-conditionals/2.3-challenge-answers.md).

# 2.3: Challenge Answers

In this module we'll give possible answers to the challenges from the last module.

## BRONZE ANSWER

```csharp
int value = 11;
if (value >= 10)
{
    Console.WriteLine("The value is greater than or equal to 10");
}
```

## SILVER ANSWER

```csharp
string password = "LetMeIn1234!";

if(password == "LetMeIn1234!"){
    Console.WriteLine("Welcome user!");
} else {
    Console.WriteLine("Something went wrong");
}
```

## GOLD ANSWER

```csharp
Console.WriteLine("How are you feeling today from 1-5?");

string feelingNumber = Console.ReadLine();

if (feelingNumber == "5")
{
    Console.WriteLine("That's great to hear!");
}
else if (feelingNumber == "4")
{
    Console.WriteLine("Good stuff!");
}
else if (feelingNumber == "3")
{
    Console.WriteLine("Hope things get better!");
}
else if (feelingNumber == "2")
{
    Console.WriteLine("Oh. Sorry to hear that.");
}
else if (feelingNumber == "1")
{
    Console.WriteLine("Dang. We hope your day gets better!");
}
else
{
    Console.WriteLine("Sorry, we don't understand. Come back later.");
}
Console.ReadLine();
```
