Showing posts with label pattern. Show all posts
Showing posts with label pattern. Show all posts
Monday, September 19, 2016

GREEN Matrix Pattern

thumbnail
Program to Display Infinite GREEN Matrix Pattern. #include <iostream> #include<stdlib.h> using namespace std; int main() ...
Wednesday, September 7, 2016

Pattern: "Triangle of stars" :)

thumbnail
#include<stdio.h> #include<conio.h> main() {       int i,j,n; //variable declaration       printf("Enter number of li...

thumbnail
PROGRAM TO PRINT A DIAMOND OF STARS: #include<iostream> using namespace std; main() { int n,j,i,c; cout<<"ENTER TH...
Monday, September 5, 2016

PROGRAM TO PRINT THE FOLLOWING PATTERN:

thumbnail
PROGRAM TO PRINT THE FOLLOWING PATTERN: 6 65 654 6543 65432 654321 #include <iostream> using namespace std; int main() { ...

PROGRAM TO DISPLAY STAR TRIANGLE PATTERN:

thumbnail
PROGRAM TO DISPLAY  STAR TRIANGLE PATTERN  IN AN ARRAY #include <iostream> using namespace std; int main() {     int i,j,n;   ...
Friday, September 2, 2016

thumbnail
PROGRAM TO PRINT THE FOLLOWING PATTERN 1 22 333 4444 55555 : #include<iostream> using namespace std; class pattern { int...