We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c212b26 commit 039422aCopy full SHA for 039422a
Exercise.java
@@ -6,9 +6,9 @@ public static void main(String[] args) {
6
int c = a / b;
7
int d = a % b;
8
9
- System.out.println("a: " + a);
10
- System.out.println("b: " + b);
11
- System.out.println("Ganzzahliger Quotient von a/b: " + c);
12
- System.out.println("Divisionsrest von a/b: " + d);
+ System.out.println("a: " + a);
+ System.out.println("b: " + b);
+ System.out.println("Ganzzahliger Quotient von a/b: " + c);
+ System.out.println("Divisionsrest von a/b: " + d);
13
}
14
0 commit comments