Browsing tag

Cpp language

program to display Double pyramid number pattern in C++

program to display Double pyramid number pattern in C++ In this tutorial, we will discuss the concept of the program to display Double pyramid number pattern in C++ In this post, we will learn how to create  double (integrated)pyramid number patterns in C++ programming language. We can use for loop, while loop or do while…

Diamond number pattern in C++ language

Diamond number pattern in C++ language In this tutorial, we will discuss a simple concept of the Diamond  number pattern in C++  language In this post, we will learn how to create diamond number pattern we can use for loop, while loop or do while loop to display different types of diamond  patterns in C++…

Loops in Cpp programming language

Loops in Cpp programming language In this tutorial, we will discuss Loops in the cpp programming language In some cases, if you want to execute a block of the statement multiple times according to a condition, such case, loops are used for performing this task. a loop statement in programming languages is a very important…

Cpp program:find smallest of three numbers using function

Cpp program:find smallest of three numbers using function In this tutorial, we will discuss the concept of Cpp program:find smallest of three numbers using the function. In this post, we will learn how to find the smallest number among three numbers using a user-defined function in the C++ programming language   In my previous post,…

Cpp program for find greatest of three numbers using function

Cpp program for find greatest of three numbers using the function In this tutorial, we will discuss the concept of Cpp program: find the greatest of three numbers using the function In this post, we will learn how to find the greatest number among three numbers using a user-defined function in C++ programming language In…

Display even and odd numbers without if statement in C++

Display even and odd numbers without if statement in C++ In this tutorial, we will discuss a concept of the Display even and odd numbers without if statement in C++ programming language In this post, we are going to learn how to display even and odd numbers without using if statement in C++ programming language….

Cpp program to separate Even and Odd number from an array

Cpp program to separate Even or Odd number from an array In this tutorial, we will discuss the concept of Cpp program to separate Even and Odd number from an array In this post, we are going to learn how to separate the number of Odd and Even from an array and display it. First, we…

Electricity bill Calculation program using function in Cpp

Electricity bill calculation program using the function in Cpp In this tutorial, we will discuss the Cpp program to Electricity bill calculation using the function In this article, we will discuss how to calculate  electricity bill in Cpp programming language using the function We can calculate monthly electric power usage in many ways in the…