w3resource

Java: Round up the result of integer division

Java Math Exercises: Exercise-1 with Solution

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:

Flowchart: Round up the result of integer division.

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.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/java-exercises/math/java-math-exercise-1.php