Tic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT Tic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT HTML CODE:- <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ […]
Read moreCategory: Coding
Hourglass pattern printing in cpp
# Hourglass Pattern in C++ // C++ Code for pattern Printing #include <iostream>using namespace std; // Function to demonstrate printing pattern void pypart(int n) […]
Read moreWrite 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 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 moreSwapping of two numbers in C++
Swapping of two numbers in C++ Swapping of two numbers in C++ Swapping of two numbers : #include <iostream> using namespace std; int main() […]
Read moreAMAZON PROJECT HTML & CSS
AMAZON PROJECT HTML & CSS AMAZON PROJECT HTML & CSS HTML CODE <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> […]
Read more
Recent Comments