-1

I've imported classes such as math.BigInteger; lang.Long, and java.lang.Math to no avail.

public static void largeNumer()
{    
   long[] num = {2830395970};
}
Samuel Kok
  • 585
  • 8
  • 16
Remy Ouji
  • 23
  • 6

1 Answers1

0

Try

long[] num = {2830395970L};

or

long[] num = {2830395970l};

And you don't need any additional import.

Eduard Dubilyer
  • 991
  • 2
  • 10
  • 21