Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Other.java 148B

123456789
  1. package samenames;
  2. public class Other {
  3. static int returns1() { return true ? 1 : 2; }
  4. int returns2() { return true ? 2 : 1; }
  5. }