27
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int age = 25;
8
switch (age) {
9
10
case 16:
11
Console.WriteLine("Muda");
12
break;
13
14
case 42:
15
Console.WriteLine("Remaja");
16
break;
17
18
case 70:
19
Console.WriteLine("Dewasa");
20
break;
21
22
default:
23
Console.WriteLine("Tak Di ketahui");
24
break;
25
}
26
}
27
}
Cached Result
<h1>This is <b>bold</b> heading</h1>
***** After adding attribute *****
<h1 style="color: red">This is <b>bold</b> heading</h1>
***** After adding attribute *****
<h1 style="color: red">This is <b>bold</b> heading</h1>