This is C# Program to check entered value is character, integer or special symbol - 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 entered value is character, integer or special symbol 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 entered value is character, integer or special symbol
full Link :
This is C# Program to check entered value is character, integer or special symbol
Article Csharp,
Article programming,
Article programs,
You can also see our article on:
This is C# Program to check entered value is character, integer or special symbol
C# Program to check entered value is character, integer or special symbol
Program Statement:
Write a program which takes one value from user and check whether the entered value is character, integer or special symbol.
Solution:
static void Main(string[] args)
{
char value;
int a;
Console.WriteLine("Enter value to check Character, integer or special symbols ");
value = Convert.ToChar(Console.ReadLine());
a=(int)value;
if (a >= 65 && a <= 90 || a >= 97 && a <= 122)
Console.WriteLine("Entered Value is Character");
else if(a>=48 && a<=57)
Console.WriteLine("Entered Value is Integer");
else if(a>=0 && a<=47 || a>=58&&a<=64 || a>=91&&a<=96 || a>=123&&a<=127)
Console.WriteLine("Entered Value is Special Symbols");
else
Console.WriteLine("Invlaid input :(");
Console.ReadLine();
}
quite so many infromation This is C# Program to check entered value is character, integer or special symbol
hopefully the information we provide about This is C# Program to check entered value is character, integer or special symbol 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 entered value is character, integer or special symbol if intend to bookmark bookmark or share please use link https://mohdrazeefrisbey.blogspot.com/2013/12/this-is-c-program-to-check-entered.html to get more information about technology please visit other pages on this blog, thank you.
Tag :
Csharp,
programming,
programs,
0 komentar:
Posting Komentar