C# program to check Operators | Operators Program in C# - a lot of websites that discuss information about gadgets, including this blog
Fun Gadget World we discuss all the information from various brands of gadgets, from the old to the latest, which is very dear if you miss, now we discuss first about C# program to check Operators | Operators Program in C# we have collect lots of data to create this article so that you get complete information, so please read it:
Articles :
C# program to check Operators | Operators Program in C#
full Link :
C# program to check Operators | Operators Program in C#
Article Csharp,
Article programming,
Article programs,
You can also see our article on:
C# program to check Operators | Operators Program in C#
C# program to check entered value is arithmetic operator, logical operator, conditional operator, relational operator or something else
Program Statement:
Write a program using switch statement which takes one character value from user and check whether the entered value is arithmetic operator, logical operator, conditional operator, relational operator or something else.
Solution:
static void Main(string[] args)
{
char ch;
int a;
Console.WriteLine("Enter any Character:");
ch = Convert.ToChar(Console.ReadLine());
a=(int)ch;
switch (ch)
{
case '+':
case '-':
case '*':
case '/':
case '%':
Console.WriteLine("Entered Character is Arithmetic");
break;
case '&':
case '|':
case '!':
Console.WriteLine("Entered Character is Logical Operator");
break;
case '?':
case ':':
Console.WriteLine("Entered Character is Condational Operator");
break;
case '<':
case '>':
case '=':
Console.WriteLine("Entered Character is Relational Operator");
break;
default:
Console.WriteLine("Entered Character is something else not included i n list");
break;
}
Console.ReadLine();
}
information C# program to check Operators | Operators Program in C# has been completed in the discussion
hopefully the information C# program to check Operators | Operators Program in C# can be useful for you in looking for references about technology gadgets,
you just finished reading information about C# program to check Operators | Operators Program in C# if you want to bookmark or share this link please use link https://indiafunworld.blogspot.com/2013/12/c-program-to-check-operators-operators.html please also visit to other page to get more information.
Tag :
Csharp,
programming,
programs,
0 komentar:
Posting Komentar