public class Comparation {
public static Boolean assert(boolean bool) {
return bool;
}
public static void main(String[] args) {
int i1 = 1;
Integer i2 = 1;
System.out.println("assert=" + assert(i1 == i2));
}
}
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати