elena1234

DataTypeFinder

Sep 25th, 2020 (edited)
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.05 KB | None | 0 0
  1. namespace dataTypeFinder
  2. {
  3.     class MainClass
  4.     {
  5.         public static void Main(string[] args)
  6.         {
  7.  
  8.             var input = Console.ReadLine();
  9.  
  10.             while (input != "END")
  11.             {
  12.                 if (int.TryParse(input, out _))
  13.                 {
  14.                     Console.WriteLine($"{input} is integer type");
  15.                 }
  16.  
  17.                 else if(double.TryParse(input, out _))
  18.                 {
  19.                     Console.WriteLine($"{input} is floating point type");
  20.                 }
  21.  
  22.                 else if(char.TryParse(input, out _))
  23.                 {
  24.                     Console.WriteLine($"{input} is character type");
  25.                 }
  26.  
  27.                 else if(bool.TryParse(input, out _))
  28.                 {
  29.                     Console.WriteLine($"{input} is boolean type");
  30.                 }
  31.  
  32.                 else
  33.                 {
  34.                     Console.WriteLine($"{input} is string type");
  35.                 }
  36.  
  37.                 input = Console.ReadLine();
  38.             }
  39.         }
  40.     }
  41. }
Add Comment
Please, Sign In to add comment