C# 判断输入的字符串中是否全是数字,请帮我检查一下我写的程序问题在哪里,多谢。
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;usingSy...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入:");
string input=Console.ReadLine();
if (judge_number(input) == true)
{
Console.WriteLine("输入的内容全是阿拉伯数字!");
}
else
{
Console.WriteLine("输入的内容包含非阿拉伯数字!");
}
}
public static bool judge_number(string text)
{
char[] c = text.ToCharArray();
for (int i = 0; i < text.Length; i++)
{
if (c[i] < '0' && c[i] > '9')
{
return false;
}
else
{
continue;
}
}
return true;
}
}
} 展开
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入:");
string input=Console.ReadLine();
if (judge_number(input) == true)
{
Console.WriteLine("输入的内容全是阿拉伯数字!");
}
else
{
Console.WriteLine("输入的内容包含非阿拉伯数字!");
}
}
public static bool judge_number(string text)
{
char[] c = text.ToCharArray();
for (int i = 0; i < text.Length; i++)
{
if (c[i] < '0' && c[i] > '9')
{
return false;
}
else
{
continue;
}
}
return true;
}
}
} 展开
展开全部
//主要错误是在那个&&上面,同时满足<'0'和>'9'当然是做不到的,另外就是字符串本身可以当数组来用,不用转换,再就是这种判断用正则简单点,也就是judge_number2
public static bool judge_number(string text)
{
for (int i = 0; i < text.Length; i++)
{
if (text[i] < '0' || text[i] > '9')
return false;
}
return true;
}
public static bool judge_number2(string text)
{
return Regex.IsMatch(text,@"^\d+$");
}
//注if (judge_number(input) == true)这种可以直接写作if (judge_number(input))
展开全部
string i = Console.ReadLine();
int a=0;
if (int.TryParse(i, out a) == false) //判断是否可以转换为整型
{
Console.WriteLine("False");
}
else
{
Console.WriteLine("Ture");
}
Console.ReadLine();
给你写的一个控制台应用程序,希望对你有所帮助吧
int a=0;
if (int.TryParse(i, out a) == false) //判断是否可以转换为整型
{
Console.WriteLine("False");
}
else
{
Console.WriteLine("Ture");
}
Console.ReadLine();
给你写的一个控制台应用程序,希望对你有所帮助吧
追问
谢谢,我的思路是全是数字则return true,否则return false,但是不知道哪里写错了,能否请帮忙看下我的 judge_number函数哪里有问题?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询