avatar
hasan7722

Guest 507 23rd Mar, 2023

BigInteger(int num) {
  number = '';
  while (num > 0) {
    last_digit = num % 10;
    num = (num - last_digit) / 10;
    char last_char = last_digit + 48; // not sure
    number = last_char + number;
  }
}
Markup
Description

bein sports ssc sports

To share this paste please copy this url and send to your friends
RAW Paste Data