Jump to content
Forumu Destekleyenlere Katılın ×
Paticik Forumları
2000 lerden beri faal olan, çok şukela bir paylaşım platformuyuz. Hoşgeldiniz.

java ödevi yapıcak insan


mulgear6

Öne çıkan mesajlar

şimdi şöyle bişey istiyorum

public bi değer var
buna başlangıçta 0 vericem
ve eger bi şekilde 0'ın altına düşerse tekrar 0'a çıkartması gerekiyo
aynı zamanda başka klaslardan değiştirilmesi gerekiyo bu aletin


InterestListElem bulundugum class'ın adı
-3'u de öylesine denemek için yaptım başka bi classtan alıp bu değeri print ettigimde -3 veriyo
istemiyorum ama bunu :(


public static int gewichtAntiNegativitaet(int a) {
if (a < 0) {
for (int gewicht1 = a ; gewicht1 <= 0 ; gewicht1++) {
a = gewicht1;
}
}
return a;
}

public static int gewicht = -3;

public InterestListElem() {

gewichtAntiNegativitaet(gewicht);

}
Link to comment
Sosyal ağlarda paylaş


public class KlassA {
public static int gewichtAntiNegativitaet(int a) {
if (a < 0) {
for (int gewicht1 = a ; gewicht1 <= 0 ; gewicht1++) {
a = gewicht1;
}
}
return a;
}
}

public class KlassB {
public static int gewicht = -3;

public KlassB() {
KlassA test = new KlassA();
System.out.println(test.gewichtAntiNegativitaet(gewicht));

}
}



eger gewicht = 3 ise gewicht = 3
eger gewicht = -1 ise gewicht = 0 bende

global variable felan mi düsündün ? tam anlamadim
Link to comment
Sosyal ağlarda paylaş


farklı klaslara atmadan yapmam gerekiyodu şu şekide hallettim

public static int gewichtAntiNegativitaet(int a) {
if (a < 0) {
for (int gewicht1 = a ; gewicht1 <= 0 ; gewicht1++) {
a = gewicht1;
gewicht = gewicht1; // trik burda dfg
}
}
return a;
}

public static int gewicht = 0;
public static int b = gewichtAntiNegativitaet(gewicht);



-13 koydugumda 0 veriyo
12 koydugumda 12

mis gibi oldu
Link to comment
Sosyal ağlarda paylaş

×
×
  • Yeni Oluştur...