Lines Matching refs:c
103 int c = 0; in math_012_numerator() local
104 c /= b; in math_012_numerator()
105 System.out.println(c); in math_012_numerator()
106 c %= b; in math_012_numerator()
107 System.out.println(c); in math_012_numerator()
108 c = a / b; in math_012_numerator()
109 System.out.println(c); in math_012_numerator()
110 c = a % b; in math_012_numerator()
111 System.out.println(c); in math_012_numerator()
112 c = c / d; in math_012_numerator()
113 System.out.println(c); in math_012_numerator()
114 c = c / e; in math_012_numerator()
115 System.out.println(c); in math_012_numerator()
116 c = c / f; in math_012_numerator()
117 System.out.println(c); in math_012_numerator()
118 c = c % f; in math_012_numerator()
119 System.out.println(c); in math_012_numerator()