/*
* 没有精度的缺失
* c#
* */
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
int a = 4;
string b = "0.01";
float c = a + float.Parse(b);
Console.WriteLine(c);
}
}
}
让float 没有精度的缺失
最新推荐文章于 2023-12-28 02:24:42 发布