11 lines
174 B
Plaintext
11 lines
174 B
Plaintext
=== Compliant solution
|
|
|
|
[source,text]
|
|
----
|
|
int thousand = 1000;
|
|
int tenThousand = 10_000;
|
|
int tenThousandWithout = 10000;
|
|
int duos = 1_00_00;
|
|
int million = 100_000_000;
|
|
----
|