int dice;
int[] tab = new int[3];
boolean gameOver = false;
System.out.println("\n\t -= SNAIL RUN =- ");
while (!gameOver) {
System.out.println("\n");
for (int i = 0; i < tab.length; i++) {
// Generating random numbers
dice = ThreadLocalRandom.current().nextInt(1, 6 + 1);
tab[i] += dice;
if (tab[i] > 50) {
gameOver = true;
}
System.out.print("Dice" + (i + 1) + "=" + dice + " | ");
}
System.out.println("\n");
for (int i = 0; i < tab.length; i++) {
System.out.print(tab[i] + " | ");
}
System.out.println("\n________________________________________________________________");
}
System.out.println("\nGAME OVER");
Integer a = 127;
Integer b = 127;
System.out.println(a == b); // true
Integer i = 128;
Integer j = 128;
System.out.println(i == j); //false
System.out.println(i.equals(j)); //true
Double a = 1998d;
Double b = 1998d;
System.out.println(a == b); // false
System.out.println(a.equals(b)); // true
iterator.next();
Tupple2<PaymentRBS, PaymentPartner>
. Т.о. в одном таппле были бы оба объекта с одинаковыми номером счета. Но ведь я использую 3 версию, почему вылетает ошибка?
dependencies {
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
implementation 'com.android.support:support-annotations:28.0.0'
implementation 'com.android.billingclient:billing:2.0.1' // Видимо об этом идет речь
}