Review All Gadget, Samsung Galaxy Note, Firmware/ Flash File, Auto Forward, Transfer from Note 7 to Computer/Mac, Transfer Data Contacts from HTC to Samsung, Chimera Tool Samsung

Selasa, 24 Desember 2013

C# Program to check entered value is character, integer or special symbol

C# Program to check entered value is character, integer or special symbol - do you know that every day there are new gadgets that are created, every gadget has its own way to use it, in blogs Review All Gadget we are reviewing gadgets from various brands ranging from spec, price and how to use the feature, now we are discussing iformasi that you are looking for C# Program to check entered value is character, integer or special symbol this information we collect from many reliable sources so that complete for you. please see.

Articles : C# Program to check entered value is character, integer or special symbol
full Link : 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:


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();
}




information C# Program to check entered value is character, integer or special symbol has been discussed

hopefully the information we provide with title C# Program to check entered value is character, integer or special symbol can provide more benefits for you.

well this information C# Program to check entered value is character, integer or special symbol we have finished, if you intend to bookmark or sharenya can use link https://almourasiloun2.blogspot.com/2013/12/c-program-to-check-entered-value-is.html.

Tag : , , ,
Share on Facebook
Share on Twitter
Share on Google+

Related : C# Program to check entered value is character, integer or special symbol

  • How to create your own chrome app to launch a website http://almourasiloun2.blogspot.com /chrome" target="_blank">Google chrome is awesome with great bookmark manager and even chrome app stores which can give you everythin ...
  • Professional C# 2008 Professional C# 2008 If we were to describe the C# language and its associated environment, the .NET Framework, as the most important new technology for developers ...
  • Program to Print Armstrong numbers in C#C# Program to Print out all Armstrong numbers between 1 and 500Program Statement:Write a program to print out all Armstrong numbers between 1 and 500. If sum of cubes of ...
  • C# Program to check number is prime or composite C# Program to check entered number is prime or composite Program Statement:Write a program that takes an integer as an input from user and prints if it is a prime o ...
  • C# Program for Array solving problemsC# Program for Array solving problemsProgram Statement:Write a function which takes four arrays of same size as arguments; array1, array2, array3, array4. The function w ...

0 komentar:

Posting Komentar