23 lines
426 B
Java
23 lines
426 B
Java
public class Rotation {
|
|
public static void main(String[] args) {
|
|
int x= 2;
|
|
int y= 3;
|
|
|
|
// --------------------------------------
|
|
// | Hier fehlt Ihr Code
|
|
// | Verwenden Sie einfache Zuweisungen
|
|
|
|
|
|
int tmp = x;
|
|
x = y;
|
|
y = -tmp;
|
|
|
|
|
|
|
|
// | Ende Ihres Codes
|
|
// --------------------------------------
|
|
|
|
System.out.println(x + " " + y);
|
|
}
|
|
}
|