+ 5
Java output - A strange equality
Why is 234 == 23_4? public class Program { public static void main(String[] args) { int x = 234; boolean y = (x==23_4); System.out.println(y); } }
2 ответов
+ 6
Underscores in Numeric Literals
https://www.sololearn.com/learn/478/?ref=app
0
I discovered is Ruby-like...