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 Math Exercises: Round up the result of integer division

Java Math Exercises: Exercise-1 with Solution

Write a Java program to round up the result of integer division.

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.



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