# Hourglass Pattern in C++ // C++ Code for pattern Printing #include <iostream>using namespace std; // Function to demonstrate printing pattern void pypart(int n) […]
Read moreMonth: March 2024
Write a Program in python to find the multiple of a number ( the divisor) out of given five numbers
Here’s a Python program to find the multiples of a given divisor out of five numbers provided by the user: def find_multiples(divisor, numbers):# Initialize a […]
Read moreCALCULATOR PROJECT HTML, CSS & JAVASCRIPT
CALCULATOR PROJECT HTML, CSS & JAVASCRIPT CALCULATOR PROJECT HTML, CSS & JAVASCRIPT HTML CODE:- <!DOCTYPE html> <html lang=”en”> Β <head> Β Β <meta charset=”UTF-8″ /> […]
Read moreBinary Search in C++
Binary Search in C++ Binary Search in C++ #include <iostream> #include <algorithm> using namespace std; int binary_search(int arr[], int size, int target) { int […]
Read moreREVERSE A NO IN C++
REVERSE A NO IN C++ REVERSE A NO IN C++ #include<iostream> using namespace std; int main(){ int n; cin>>n; int reverse=0; […]
Read moreWrite a program in python to check whether a number is prime or not.
Here’s a Python code to check if a given number is prime or not: def is_prime(n):if n <= 1:return Falseelif n <= 3:return Trueelif n […]
Read moreSecond Largest Element in an Array
Second Largest Element in an Array Second Largest Element in an Array #include <iostream> using namespace std; int main() { int arr[] = {1, […]
Read moreKaisa Lga Mera Majak
Kaisa Lga Mera Majak Thanks for reading this blog. Hope you get satisfied with the blog and definitely this blog […]
Read moreGiveaway Giveaway π₯³π₯³
Giveawayπ₯³ Join this Giveaway…50 Lucky User will get a chance toΒ upto Rs.100. Click to Proceed
Read moreGetting started with Python
INTRODUCTION Python is a popular programming language. It was created by Guido van Rossum, and released in 1991.It is used for:web development (server-side),software development,mathematics,system script […]
Read more
Recent Comments