Hallo ich habe ein kleines Programm geschrieben, welches Zahlen sortieren soll. Die Sortierung klappt auch einwandfrei, nur das übergeben aus der Methode in die Main funktioniert nicht.
Danke für eure Hilfe
Radoan
Java:
public class Aufgabe2 {
static int a=3;
static int b=1;
static int c=2;
public static int berechnung(int a,int b, int c){
int t;
if (a > b) {
t = b;
b = a;
a = t;
}
if (a > c) {
t = c;
c = a;
a = t;
}
if (b > c) {
t = c;
c = b;
b = t;
}
return a+b+c; // a=1, b=2, c=3
}
public static void main(String[] args) {
System.out.println("a = " + a);//a=3
System.out.println("b = " + b);//b=1
System.out.println("c = " + c);//c=2
berechnung(a,b,c);//a=3, b=1,c=2
System.out.println("a = " + a);//a=3
System.out.println("b = " + b);//b=1
System.out.println("c = " + c);//c=2
}
}
Radoan