-3

I have a question. I want to make a app for mind reader. First i want to give 1 to 100 number and ask the user to think in mind a number.on next i want to display 1 to 50 and two button yes,no. When click on yes it shows 1 to 25 and on no it shows 50 to 75 and so on.

1 Answers1

0

use Biginteger and BigDecimal instead of int and decimal

BigInteger a=new BigInteger(valueA);
BigInteger b=new BigInteger(valueB);
BigInteger c=a.multiply(b);
max
  • 5,963
  • 12
  • 49
  • 80