0b380204a4
Former-commit-id: 7a84ce7d08c42c458ac8e74b27186ca863315d79
12 lines
148 B
C#
12 lines
148 B
C#
using System;
|
|
|
|
public class B
|
|
{
|
|
public static void Main ()
|
|
{
|
|
int a = 1_0_3;
|
|
double b = 0__0e+1_1;
|
|
int c = 0b0__1_0;
|
|
int d = 0x0__F_0;
|
|
}
|
|
} |