181k views
3 votes
Develop a simple program in C# that receives two binary inputs from the user (graphical or command line) and outputs the result of the selected gate operation. Gate operations that should be selectable are AND, OR, XOR.

User Marilou
by
8.3k points

1 Answer

0 votes

Final answer:

To develop a program in C# that performs logical operations, you can use the bitwise operators to manipulate binary values. Here's an example program that prompts the user for two binary inputs and an operation, then outputs the result.

Step-by-step explanation:

To develop a program in C# that performs logical operations, you can use the bitwise operators to manipulate binary values. Below is an example of a program that prompts the user for two binary inputs and an operation, then outputs the result:

using System;

class Program
{
static void Main()
{
Console.Write("Enter the first binary number: ");
string input1 = Console.ReadLine();

Console.Write("Enter the second binary number: ");
string input2 = Console.ReadLine();

Console.Write("Enter the operation (AND, OR, XOR): ");
string operation = Console.ReadLine();

int number1 = Convert.ToInt32(input1, 2);
int number2 = Convert.ToInt32(input2, 2);
int result = 0;

switch (operation)
number2;
break;
case "XOR":
result = number1 ^ number2;
break;
default:
Console.WriteLine("Invalid operation.");
break;


Console.WriteLine("The result is: " + Convert.ToString(result, 2));
}
}

User Bolu
by
6.8k points