using System;
namespace MyFirstProgram
{
internal class Program
{
static void Main(string[] args) // main method
{
double x = 3.14;
int x_2 = Convert.ToInt32(x);
Console.WriteLine(x.GetType());
Console.WriteLine(x_2.GetType());
double d = Convert.ToDouble(x_2) + 0.14;
Console.WriteLine(d.GetType());
// int e = 321;
double e = 312.123;
String f = Convert.ToString(e);
Console.WriteLine(f.GetType());
String g = "$";
char h = Convert.ToChar(g);
Console.WriteLine(h);
Console.WriteLine(h.GetType());
String i = "true";
bool j = Convert.ToBoolean(i);
Console.WriteLine(j);
Console.WriteLine(j.GetType());
}
}
}
728x90
'언어 > [C#]' 카테고리의 다른 글
[C#] 기본 입력 Console.ReadLine() (0) | 2023.02.25 |
---|---|
[C#] 함수 설명 method summary (0) | 2023.02.25 |
[C#] C# 주석 작성하기 (한 줄 주석, 여러 줄 주석) (0) | 2023.02.25 |
[C#] 변수& 상수 Variables & Constants (int, double, bool, char, String) (1) | 2023.02.24 |
[C#] Beep!! Console.Beep() (0) | 2023.02.24 |