13
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
int x = 5, y = 10, z = 15;
8
9
int result = x * 3 > y ? x : y > z? y : z;
10
11
Console.WriteLine(result);
12
}
13
}
Cached Result
Compilation error (line 1, col 1): A namespace cannot directly contain members such as fields or methods