u11 start

This commit is contained in:
Luca Conte 2022-10-27 20:09:27 +02:00
parent aa01aad344
commit 510e2489e8
1 changed files with 15 additions and 0 deletions

15
u11/Scale.java Normal file
View File

@ -0,0 +1,15 @@
public class Scale {
public static void main(String[] args) {
int x= 4;
int y= 3;
int faktor= 2;
// ... hier kommt der Code hin (ggf. mehrere Anweisungen),
// der zum Aufruf der Methode skaliere benötigt wird
System.out.println();
}
// Hier fehlt Ihre Methode skaliere
}