Advertisement
Spocoman

01. Data Type Finder

Jan 19th, 2022 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.83 KB | None | 0 0
  1. using System;
  2.  
  3. namespace DataTypeFinder
  4. {
  5.     class Program
  6.     {
  7.         static void Main()
  8.         {
  9.             string s;
  10.             char c;
  11.             int i;
  12.             double d;
  13.             bool b;
  14.             string command = Console.ReadLine();
  15.  
  16.             while (command != "END")
  17.             {
  18.                 Type type = command.GetType();
  19.  
  20.                 string dataType =
  21.                     bool.TryParse(command, out b) ? "boolean" :
  22.                     int.TryParse(command, out i) ? "integer" :
  23.                     double.TryParse(command, out d) ? "floating point" :
  24.                     char.TryParse(command, out c) ? "character" : "string";
  25.  
  26.                 Console.WriteLine($"{command} is {dataType} type");
  27.  
  28.                 command = Console.ReadLine();
  29.             }
  30.         }
  31.     }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement