Monday, 31 July 2017
Write a Java program and compute the sum of the digits of an integer.
What's Related?

Write a Java program to compute the distance between two points on the surface of earth. Distance between the two points [ (x1,y1) & (x2,y2)] d = radius * arccos(sin(x1) * sin(x2) + cos(x1) * cos(x2) * cos(y1 - y2)) Radius of the earth r = 6371.01 Kilometers

Write a Java program to compute the area of a polygon. Area of a polygon = (n*s^2)/(4*tan(π/n)) where n is n-sided polygon and s is the length of a side.

Write java program to create constant variable and print.

Write a Java program to print numbers between 1 to 100 which are divisible by 3, 5 and by both.
Write a Java program to compute the area of a hexagon.
Write a Java program to check whether Java is installed on your computer.
Home