迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 >

在 C# 中将 Int 转换为浮点数

作者:迹忆客 最近更新:2024/01/03 浏览次数:

本指南将教我们在 C# 中将 int 转换为 float。它可以简单地通过铸造来完成。

我们可以使用类型转换方法轻松地将 int 转换为 floatdecimal。让我们来看看。


C# 中将 Int 转换为 Float

我们可以使用类型转换将 int 转换为 float。通过在 int 变量后面写 (float)

例如,如果你的 int 变量是 temp_int,要将里面的值转换为 float 值,你需要做的就是编写 (float)temp_int。看看下面的代码。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Int_to_Float {
  class Program {
    static void Main(string[] args) {
      // using type cast we can convert INT TO FLOAT OR DECIMAL...........
      int temp_int = 1;
      float temp_float = (float)temp_int;
      decimal temp_decimal = 3;
      float temp_float_decimal = (float)temp_decimal;
      Console.WriteLine("INT TO FLOAT= " + temp_float);
      Console.WriteLine("FLOAT TO DECIMAL= " + temp_float_decimal);

      Console.ReadKey();
    }
  }
}

代码的输出如下所示。

output:
INT TO FLOAT= 1
FLOAT TO DECIMAL= 3

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 C# 中将 Long 转换为整数

发布时间:2024/01/03 浏览次数:68 分类:编程语言

有两种主要方法可用于将长变量转换为 C# 中的整数变量,即类型转换方法和 Convert.ToInt32()函数。

在 C# 中将 Int 转换为十六进制

发布时间:2024/01/03 浏览次数:156 分类:编程语言

ToString()函数可用于将整数值转换为十六进制字符串,而 Convert.ToInt32()函数可用于将十六进制字符串转换为 C# 中的整数值。

在 C# 中读取 JSON 文件

发布时间:2024/01/03 浏览次数:146 分类:编程语言

Json.net 命名空间内的 JsonConvert 类可用于在 C# 中对 JSON 文件执行读取和写入操作。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便