Program To Find Simple Interest Program To Find Simple Interest #include<iostream> using namespace std; int main() { float P , R , T […]
Read moreCategory: Coding
Few Examples of Python that use conditional statements
Here are a few examples of Python programs that use conditional statements to demonstrate different concepts: Example 1: Check if a number is positive, negative, […]
Read moreCheck the Number is Palindrome or not
Check the Number is Palindrome or not Check the Number is Palindrome or not #include <iostream> using namespace std; int main() { int n, […]
Read moreProgram to Reverse a Number in C++
Program to Reverse a Number in C++ Program to Reverse a Number in C++ #include <stdio.h> using namespace std; int main() { int n, […]
Read morePython tutorials
Python tutorials for beginners Python Operators In Python programming, Operators in general are used to perform operations on values and variables. These are standard […]
Read moreFind the Sum of all Elements in Given Array
Find the Sum of all Elements in Given Array Find the Sum of all Elements in Given Array include <iostream> using namespace std; int […]
Read moreC++ Program to Add Two Given Numbers
C++ Program to Add Two Given Numbers C++ Program to Add Two Given Numbers #include <iostream> using namespace std; int main() { int input1, […]
Read morePrint Floyd’s Triangle in C++
Print Floyd’s Triangle in C++ Print Floyd’s Triangle in C++ FLOYD’S TRIANGLE #include <iostream> using namespace std; int main() { int n , a […]
Read moreFind the largest number among three number in C++
Find the largest number among three number in C++ Find the largest number among three number in C++ #include <iostream> using namespace std; int […]
Read moreFind largest element of an array in C++
Find largest element of an array in C++ Find largest element of an array in C++ #include <iostream> using namespace std; int main() { […]
Read more
Recent Comments