Skip to content

Commit f0b6e93

Browse files
author
github-actions
committed
Google Java Format
1 parent 3691872 commit f0b6e93

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

Exercise.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
public class Exercise {
22

33
public static void main(String[] args) {
4-
String name = "Daniel";
5-
int age = 40;
6-
char gender = 'M';
4+
String name = "Daniel";
5+
int age = 40;
6+
char gender = 'M';
77

8-
Exercise.printPersonData("Daniel", 40, 'M');
9-
Exercise.printPersonData(name, age, gender);
8+
Exercise.printPersonData("Daniel", 40, 'M');
9+
Exercise.printPersonData(name, age, gender);
1010
}
1111

12-
public static void printPersonData(String name, int age, char gender) {
12+
public static void printPersonData(String name, int age, char gender) {
1313
System.out.println("Name: " + name);
14-
System.out.println("Alter: " + age);
15-
System.out.println("Geschlecht: " + gender);
16-
}
14+
System.out.println("Alter: " + age);
15+
System.out.println("Geschlecht: " + gender);
16+
}
1717
}

0 commit comments

Comments
 (0)