Identify if a string is a number

前端 未结 25 3024
無奈伤痛
無奈伤痛 2020-11-22 00:13

If I have these strings:

  1. \"abc\" = false

  2. \"123\" = true

  3. \"ab2\"

相关标签:
25条回答
  • 2020-11-22 00:40
    //To my knowledge I did this in a simple way
    static void Main(string[] args)
    {
        string a, b;
        int f1, f2, x, y;
        Console.WriteLine("Enter two inputs");
        a = Convert.ToString(Console.ReadLine());
        b = Console.ReadLine();
        f1 = find(a);
        f2 = find(b);
    
        if (f1 == 0 && f2 == 0)
        {
            x = Convert.ToInt32(a);
            y = Convert.ToInt32(b);
            Console.WriteLine("Two inputs r number \n so that addition of these text box is= " + (x + y).ToString());
        }
        else
            Console.WriteLine("One or two inputs r string \n so that concatenation of these text box is = " + (a + b));
        Console.ReadKey();
    }
    
    static int find(string s)
    {
        string s1 = "";
        int f;
        for (int i = 0; i < s.Length; i++)
           for (int j = 0; j <= 9; j++)
           {
               string c = j.ToString();
               if (c[0] == s[i])
               {
                   s1 += c[0];
               }
           }
    
        if (s == s1)
            f = 0;
        else
            f = 1;
    
        return f;
    }
    
    0 讨论(0)
提交回复
热议问题