I am just starting to learn C# in college and I was tasked with making a console program that acts as a maths quiz, with my if statements it only outputs correct even if the user inputs an incorrect answer, I can't figure out why, I've looked at multiple websites but everything seems to be fine with the code? I was hoping someone here with more experience would be able to help.
Below is the code but I can't figure out what's wrong with it, like I said before I looked over multiple websites and my code seems to be in line with what they were doing, my teacher also had a glance at it but couldn't see any faults
// we need to make a maths quiz..
using System;
namespace MathsQuiz
{
internal class Program
{
private static Random GetRandom()
{
return new Random();
}
static void Main(string[] args)
{
//this is where the random numbers are generated
Random random = GetRandom();
int num1 = random.Next(1, 100);
int num2 = random.Next(1, 100);
int answer = num1 + num2;
/*this shows the user the question using
the randomly generated numbers*/
Console.WriteLine("Welcome to the maths quiz!\nWe still start with addition,\n add these following numbers\n" + num1 + "+" + num2 + "= ?");
int UserAnswer = Convert.ToInt32(Console.ReadLine());
//checks if the users answer is correct
if (Convert.ToBoolean(UserAnswer = answer))
{
Console.WriteLine("Correct!");
}
else if (Convert.ToBoolean(UserAnswer != answer))
{
Console.WriteLine("Incorrect.");
}
}
}
}
As some comments already state:
So adjust your code to look like this: