Home
- On
- By
- 0 Comment
- Categories: addition, Calculations
Python program to sum of two numbers
Python program to the sum of two numbers In this tutorial, we will discuss the Python program to the sum of two numbers In this topic, we will learn how to add two numbers in Python programming language Sum of two integer numbers #find sum of two integer numbers f_no=35 #variable declaration s_no=55 sum=f_no +…
Read More- On
- By
- 0 Comment
- Categories: addition, Calculations
Cpp program to sum two numbers
Cpp program to sum two numbers In this tutorial, we will discuss the topic of Cpp program to sum two numbers In this topic, we will learn how to add two numbers in C++ programming language Find Sum to numbers Example- 1 Program 1 #include <iostream> #include <conio.h> using namespace std; int main() { int…
Read More- On
- By
- 0 Comment
- Categories: addition, Calculations
Java program to sum of two numbers
Java program to the sum of two numbers In this tutorial, we will discuss the Java program to the sum of two numbers In this topic, we will learn how to add two numbers in Java programming language Sum of two numbers public class Add_Two_Numbers{ public static void main(String args[]){ int num_1=23,num_2=32,sum; //declare variables sum=num_1+num_2;…
Read More- On
- By
- 0 Comment
- Categories: C++ Oop, function in C++, function/method
Type of user defined function in Cpp language
Type of user defined function in C++ language In this tutorial, we will discuss Type of user defined function in C++ language Already, we would learn about Type of user-defined function in C language. Now we get to know Type of user-defined function in C++ language. The user defines functions are categorized are: Function with no…
Read More- On
- By
- 0 Comment
- Categories: pyramid triangle, star pattern
C program to display pyramid star pattern
C program to display pyramid star pattern In this tutorial, we will discuss the C program to display pyramid star pattern In this topic, we will learn how to create Pyramid star pattern using nested for loop in C language Star Pyramid pattern 1 Program 1 #include <stdio.h> #include <stdlib.h> int main() { int rows,i,j,k,l; printf(“Enter…
Read More- On
- By
- 0 Comment
- Categories: pyramid triangle, star pattern
Cpp program to display Pyramid star pattern
Cpp program to display Pyramid star pattern In this tutorial, we will discuss about Cpp program to display Pyramid star pattern In this topic, we will learn how to create Pyramid star pyramid pattern in C++ language using nested for loop Star Pyramid pattern 1 Program 1 Pyramid pattern #include <iostream> #include <conio.h> using…
Read More- On
- By
- 0 Comment
- Categories: pyramid triangle, star pattern
Java code to Hollow Pyramid Pattern
Java code to Hollow Pyramid Pattern In this tutorial, we will discuss Java code to Hollow Pyramid Pattern in Java language In this topic, we will learn how to create te hollow pyramid star pattern in Java programming language Hollow Pyramid pattern Program 1 This program allows the user to enter the number of rows…
Read More- On
- By
- 0 Comment
- Categories: pyramid triangle, star pattern
Cpp program to Hollow Pyramid Pattern
Cpp program to Hollow Pyramid Pattern In this tutorial, we will discuss the concept of Cpp program to Hollow Pyramid Pattern In this topic, we will learn how to create hollow pyramid star pattern in C++ programming language using nested for loop Hollow Pyramid pattern Program 1 #include <iostream> #include <conio.h> using namespace std; int…
Read More- On
- By
- 5 Comments
- Categories: multiply, Table
Python program to display the multiplication table
Python program to display the multiplication table In this tutorial, we will discuss the concept of Python program to display the multiplication table. We will learn how to create a multiplication table in a various way in Python language Program 1 Program to print the multiplication table using for loop in Python ”’multiplication table in…
Read MoreCpp program to multiplication table
Cpp program to the multiplication table In this tutorial, we will discuss the Cpp program to multiplication tableCreate multiplication table using loops. We will learn how to create a multiplication table using loops. we can create multiplication table using for loop, while loop and do – while loop in C++ language. Create a multiplication table…
Read More