27
1
using System;
2
public class Demo {
3
public static void Main() {
4
bool boolVariable = true;
5
byte byteVariable = 155;
6
short shortVariable = -91;
7
ushort ushortVariable = 91;
8
int intVariable = -1000;
9
uint uintVariable = 1000;
10
long longVariable = -56000;
11
ulong ulongVariable = 56000;
12
float floatVariable = 160.54F;
13
double doubleVariable = 13782.57543D;
14
char charVariable = 'Z';
15
Console.WriteLine("The value of boolean variable: " + boolVariable);
16
Console.WriteLine("The value of byte variable: " + byteVariable);
17
Console.WriteLine("The value of short variable: " + shortVariable);
18
Console.WriteLine("The value of ushort variable: " + ushortVariable);
19
Console.WriteLine("The value of int variable: " + intVariable);
20
Console.WriteLine("The value of uint variable: " + uintVariable);
21
Console.WriteLine("The value of long variable: " + longVariable);
22
Console.WriteLine("The value of ulong variable: " + ulongVariable);
23
Console.WriteLine("The value of float variable: " + floatVariable);
24
Console.WriteLine("The value of double variable: " + doubleVariable);
25
Console.WriteLine("The value of char variable: " + charVariable);
26
}
27
}
Cached Result
True