C# で Int を Float に変換する
Haider Ali
2023年10月12日
このガイドでは、C# で int
を float
に変換する方法を説明します。キャストするだけでできます。
型キャスト方式を使用して、int
を float
または decimal
に簡単に変換できます。見てみましょう。
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
著者: Haider Ali
Haider specializes in technical writing. He has a solid background in computer science that allows him to create engaging, original, and compelling technical tutorials. In his free time, he enjoys adding new skills to his repertoire and watching Netflix.
LinkedIn