SHARE
SPREAD
HELP

The Tradition of Sharing

Help your friends and juniors by posting answers to the questions that you know. Also post questions that are not available.


To start with, Sr2Jr’s first step is to reduce the expenses related to education. To achieve this goal Sr2Jr organized the textbook’s question and answers. Sr2Jr is community based and need your support to fill the question and answers. The question and answers posted will be available free of cost to all.

 

#
Authors:
Stuart Reges, Marty Stepp
Chapter:
Program Logic And Indefinite Loops
Exercise:
Exercises
Question:13 | ISBN:9780136091813 | Edition: 2

Question

Write a method called consecutive that accepts three integers as parameters and returns true if they are three consecutive numbers—that is, if the numbers can be arranged into an order such that, assuming some integer k, the parameters’ values are k, k + 1, and k + 2. Your method should return false if the integers are not consecutive. Note that order is not significant; your method should return the same result for the same three integers passed in any order.

For example, the calls consecutive(1, 2, 3), consecutive(3, 2, 4), and consecutive(–10, –8, –9) would return true. The calls consecutive(3, 5, 7), consecutive(1, 2, 2), and consecutive(7, 7, 9) would return false.

TextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbookTextbook

Answer

 
// package indefinite_loops;

import java.util.Arrays;

public class Consecutive {

	public boolean consecutive(int a, int b, int c) {
		
		// push these vales in an array
		int numbers[] = new int[3];
		numbers[0] = a;
		numbers[1] = b;
		numbers[2] = c;

		// sort them
		Arrays.sort(numbers);
		boolean flag = true;
		// compare them through loop if their difference is one
		for (int i = 1; i < numbers.length; i++) {
			if (numbers[i] != numbers[i - 1] + 1) {
				flag = false;
			}

		}

		return flag;
	}

	public static void main(String[] args) {

		Consecutive con = new Consecutive();
		// call the method
		boolean areValuesConsecutive = con.consecutive(5, 7, 6);
		System.out.println("are the values are consecutive: " +areValuesConsecutive);

	}

}
Output:

are the values are consecutive: true

 

0 0

Discussions

Post the discussion to improve the above solution.