Latest :

C Program Area Of Equilateral Triangle | C Programs

C Program to find the area of an equilateral triangle – In this particular article, we will detail in on the various methods to calculate the area of an equilateral triangle. The several methods used to do so are as follows: Using Standard Method Using Function Using Pointers Using Macros In this blog piece, we have added suitable examples and ...

Read More »

Hollow Rhombus Star Pattern Program In C | Patterns

Hollow Rhombus star pattern program in C – In this distinct article, we will explain how to print a hollow rhombus star pattern in C Programming. A bunch of methods are used to print the Hollow Rhombus Star Pattern in C Programming such as: Using For Loop Using While Loop Using Do-While Loop As we all know, Rhombus is a ...

Read More »

Control Statements In C – C Programming | Tutorials

Control statements in C With Examples, sample outputs and list of sample programs here. List of C Tutorials for beginners. And, list of C programs. Our team has so far written 350+ sample program both in C and C++. What are control statements in C? In C, we have 32 standard keywords and out of them 12 (the keywords in ...

Read More »

Java Programs – 500+ Simple & Basic Programs With Outputs

Java programs: Basic Java programs with examples & outputs. Here we covered over the list of 500+ Java simple programs for beginners to advance, practice & understood how java programming works. You can take a pdf of each program along with source codes & outputs. In case if you are looking out for C Programs, you can check out that ...

Read More »

Java Program To Check Vowel Or Consonant | 5 Ways

Java program to identify whether the given character is a vowel or not. With the help of the below program, you will get to know how to write and print whether the given number is a vowel. We have written the program in three different ways, using if else statement, using switch case, user-defined method – learn more about switch ...

Read More »

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 »

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 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 »

Java Program for Matchstick Houses | Java Programs

Java program for matchstick houses, This challenge will help you interpret mathematical relationships both algebraically and geometrically. Create a function that takes a number (step) as an argument and returns the amount of matchsticks in that step. See step 1, 2 and 3 in the image above. Examples: matchHouses(1) ➞ 6 matchHouses(4) ➞ 21 matchHouses(87) ➞ 436 To find the ...

Read More »