a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
14 lines
239 B
C#
14 lines
239 B
C#
using System;
|
|
|
|
class ParserTest
|
|
{
|
|
public static void Main ()
|
|
{
|
|
int [] ivals = { 2, 5 };
|
|
foreach (int x in ivals)
|
|
foreach (int y in ivals)
|
|
Console.WriteLine ("{0} {1} {2} {3} {4} {5}", x, y, x + y, x - y, x < y, x >= y);
|
|
}
|
|
}
|
|
|