leetcode系列---atoiFunction C#code

2021-02-15 15:20

阅读:736

标签:line   static   continue   out   ase   rgs   控制   res   ram   

Function:

 /// 
        /// ToInt
        /// 
        /// 
        /// 
        public static int atoi(string str)
        {
            string strNew = str.Trim();
            string ch = strNew.Substring(0, 1);
            string result = "";
            int bl = 0;
            double re;
            bool flag = true;
            for (int i = 1; i  int.MaxValue)
                    re = 0;
            }
            else
                re = 0;
            return (int)re;
        }

控制台展示:

static void Main(string[] args)
        {
            Console.WriteLine("请输入要转化的字符串:");
            string str = Console.ReadLine();
            int re = atoi(str);
            if (re != 0)
                Console.WriteLine("转化后:" + re);
            else
                Console.WriteLine("该字符串不能转换为整数!");
            Console.ReadKey();
        }

  

leetcode系列---atoiFunction C#code

标签:line   static   continue   out   ase   rgs   控制   res   ram   

原文地址:https://www.cnblogs.com/wqtmelo/p/8430588.html


评论


亲,登录后才可以留言!