package hallowelt; /** * @author euteneuer */ public class schriftlicheDivision { public static void main (String [] argumente) { int a = 17; int b = 11; int c = a/b; String ergebnis = Integer.toString(c) + ","; a = (a-b*c)*10; c = a/b; ergebnis = ergebnis + c; System.out.println("Ergebnis: "+ergebnis); } }