Latest :

Java Programs

Java Program to Calculate Restaurant Bill | Java Programs

Java code to calcuate the resturant bill, the following program is pretty simple one along with sample outputs. We have choosen the famous south indian food to create the following program. We all go to restaurants frequently and eat. Today, let us write a code to calculate the restaurant bill. With multiple items in a restaurant (in our case 10), ...

Read More »

Java Program Sum Of N Numbers | 4 Simple Ways

Java program to calculate the sum of N numbers using arrays, recursion, static method, using while loop. Here is the complete Java program with sample outputs. You can learn more tutorials here and Java interview questions for beginners. With the following program, you can even print the sum of two numbers or three numbers up to N numbers. How to ...

Read More »

Java Program : Convert Lowercase Character to Uppercase in Java

Java Program to Convert lowercase character to uppercase character, the following program has written in different ways to convert small alphabets to capital alphabets. Sample output is also added after the Java program, Java String toLowercase() and toUpperCase(). Our problem statement here is, to convert all the lowercase character of the given input into uppercase. To do this, we require ...

Read More »

Find Missing Third Angle in Triangle : Java Program

Java Program to enter two angles of a triangle and find the third angle in Java, to find the missing third angle, we first need the other two known angles of the triangle. Our expected output is whether the angle is an acute angle, an obtuse angle or a right angle. To begin the solution, we first require the two ...

Read More »

Java : Hurdle Race & Jump Solution Hackerrank | Java Programs

Hurdle race & hurdle jump java program Hackerrank solution, Create a function that takes an array of hurdle heights and a jumper’s jump height, and determine whether or not the hurdler can clear all the hurdles. A hurdler can clear a hurdle if their jump height is greater than or equal to the hurdle height. Examples: hurdleJump([1, 2, 3, 4, ...

Read More »

Java : Return the Last Element in An Array & N Elements | Java Programs

 Java program to return the last element in an array – Here we written the program in four different ways to find the last element of array in Java along with outputs as well.Get last Print Last Element – Static Method Here, our problem statement is to find the last element in the given array. For this, our required inputs ...

Read More »

Java Program : Calculate Batting Average Example | Programs

Java Program to calculate the batting average. The following program is written in five different ways by using standard values, user-defined method, scanner class, through creating a separate class. Do check it out. Methods we used in this Cricket Batting Program: Using standard Method Using Scanner Class Using Command Line Arguments User Define Method Separate Class By Using Standard Values There ...

Read More »

Java Program To Calculate Modulus | Mod Java

Java Program To Calculate Modulus – In this article, we will explain the multitude of methods to calculate the modulus of a number in Java Programming. Suitable examples and sample programs have been included in order to make you understand simply. The compiler has also been added so that you can execute the programs yourself. The methods used in this ...

Read More »

Java Program To Print Diamond Star Pattern | Programs

Java program to print diamond star pattern program. We have written the below print/draw diamond asterisk/star pattern program in four different ways with sample example and output do check it out. At the end of the program, we added compiler such that you can execute the below codes – Also check Number pattern Programs in Java. Print Diamond star pattern program ...

Read More »

Java Program To Calculate Power Of Number | 4 Ways

Java Program To Calculate Power Of Number – In this article, we will detail in on the several ways to calculate the power of a number in Java programming. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which you can execute it ...

Read More »