Java: Round up the result of integer division
Round Up Integer Division
Write a Java program to round up integer division results.
Sample Solution:
Java Code:
import java.util.*;
public class Example1 {
public static void main(String[] args) {
int tot_theory_marks = 350, tot_practical_marks = 90, tot_marks = 500;
int percentage_of_marks = ((tot_theory_marks + tot_practical_marks)*100)/tot_marks;
System.out.print("\nPercentage of Marks: "+percentage_of_marks+"%\n");
}
}
Sample Output:
Percentage of Marks: 88%
Flowchart:

For more Practice: Solve these Related Problems:
- Write a Java program to perform integer division rounding up without using built-in rounding functions.
- Write a Java program to round up the result of dividing two integers using only arithmetic operators.
- Write a Java program to compare standard integer division and a custom rounding-up method over a range of values.
- Write a Java program to implement a recursive method that returns the ceiling of an integer division result.
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Java Math Exercises Home.
Next: Write a Java program to get whole and fractional parts from a double value.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.