24
1
using System;
2
3
public class Program
4
{
5
public static void Main(string[] args)
6
{
7
int num = 100;
8
float rate = 10.2f;
9
decimal amount = 100.50M;
10
char code = 'C';
11
bool isValid = true;
12
string name = "Steve";
13
14
Console.WriteLine(num);
15
Console.WriteLine(rate);
16
Console.WriteLine(amount);
17
Console.WriteLine(code);
18
Console.WriteLine(isValid);
19
Console.WriteLine(name);
20
21
22
}
23
}
24
Cached Result
please enter the number of quarters:
>