Home | History | Annotate | Download | only in src

Lines Matching refs:correct_result

30         int correct_result = dividend / divisor;
31 if (result != correct_result) {
33 " should be " + correct_result);
37 int correct_result = dividend % divisor;
38 if (result != correct_result) {
40 " should be " + correct_result);
44 long correct_result = dividend / divisor;
45 if (result != correct_result) {
47 " should be " + correct_result);
51 long correct_result = dividend % divisor;
52 if (result != correct_result) {
54 " should be " + correct_result);