Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Divide the two specified integers using subtraction operator

Java Basic: Exercise-164 with Solution

Write a Java program to divide the two given integers using subtraction operator.

Pictorial Presentation:

Java Basic Exercises: Divide the two specified integers using subtraction operator.

Sample Solution:

Java Code:

import java.util.Scanner;
public class Solution {	
	public static float divide_using_subtraction(int dividend, int divider) {
	if (divider == 0) {
       return 0;
	}	   
    float result = 0;
    while (dividend > divider) {
      dividend -= divider;
      result++;
    }
    float decimalPart = (float) dividend / (float) divider;
    result += decimalPart;
    return result;
  }	
	
    public static void main(String[] args) {
 Scanner in = new Scanner(System.in);
        System.out.print("Input the dividend: ");
        int dividend = in.nextInt();
		System.out.print("Input the divider: ");
        int divider = in.nextInt();
		System.out.println("\nResult: " + divide_using_subtraction(dividend,divider));		
		}
}

Sample Output:

Input the dividend:  625
Input the divider:  25

Result: 25.0

Flowchart:

Flowchart: Java exercises: Divide the two specified integers using subtraction operator.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program that will accept an interger and convert it into a binary representation. Now count the number of bits which is equal to zero of the said binary represntation.
Next: Write a Java program to move every positive number to the right and every negative number to the left of a given array of integers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe