This is C# program to check Operators | Operators Program in C# - lately we often hear a lot of new gadgets are released by famous brands that have a good spec, on the blog
News Techno Blog we will discuss about the review gagdet of all brands ranging from spek, price and how to use it, now we will discuss first about This is C# program to check Operators | Operators Program in C# please refer to the information we provide, because we have collected a lot of data to make this article to be complete for you:
Articles :
This is C# program to check Operators | Operators Program in C#
full Link :
This is C# program to check Operators | Operators Program in C#
Article Csharp,
Article programming,
Article programs,
You can also see our article on:
This is 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();
}
quite so many infromation This is C# program to check Operators | Operators Program in C#
hopefully the information we provide about This is C# program to check Operators | Operators Program in C# can give more benefits for you in determining the gadget that suits your needs.
you just read the article with the title This is C# program to check Operators | Operators Program in C# if intend to bookmark bookmark or share please use link https://mohdrazeefrisbey.blogspot.com/2013/12/this-is-c-program-to-check-operators.html to get more information about technology please visit other pages on this blog, thank you.
Tag :
Csharp,
programming,
programs,
0 komentar:
Posting Komentar