A AB ABC ABCD ABCDE |
E DE CDE BCDE ABCDE |
Code of above pattern |
Code of above pattern |
A BA CBA DCBA EDCBA |
E ED EDC EDCB EDCBA |
Code of above pattern |
Code of above pattern |
ABCDE ABCD ABC AB A |
ABCDE BCDE CDE DE E |
Code of above pattern |
Code of above pattern |
EDCBA DCBA CBA BA A |
EDCBA EDCB EDC ED E |
Code of above pattern |
Code of above pattern |
A BB CCC DDDD EEEEE |
E DD CCC BBBB AAAAA |
Code of above pattern |
Code of above pattern |
EEEEE DDDD CCC BB A |
AAAAA BBBB CCC DD E |
Code of above pattern |
Code of above pattern |
Related Links:
Number Patterns
http://cbasicprogram.blogspot.in/2012/04/number-patterns.html
Star Patterns
http://cbasicprogram.blogspot.in/2012/03/star-patterns.html
Series Programs
http://cbasicprogram.blogspot.in/2013/01/series-program.html
Write the code to print the following pattern.
ReplyDelete1
2 3 2
3 4 5 4 3
4 5 6 7 6 5 4
5 6 7 8 9 8 7 6 5
6 7 8 9 0 1 0 9 8 7 6
7 8 9 0 1 2 3 2 1 0 9 8 7
8 9 0 1 2 3 4 5 4 3 2 1 0 9 8
Attention everyone, the file provided above is not working. I have been looking for the working file and finally found it.
Delete✔️Click Here To Download http://gestyy.com/e0GAyS
✔️Click Here To Download
✔️Click Here To Download http://exe.io/XONVsO6l
✔️Click Here To Download
✔️Click Here To Download
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
Mn.
..
.
.
.
..
.
.
.
.
.
.
.
.
.
.
..
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.cx
.sdcccxxxcxcxcxxccx
Take hint from http://cbasicprogram.blogspot.in/2013/01/number-pattern-52.html
ReplyDeleteIt's simply can be made using ASCII value...Use variable whose value is 65 initially and then increment with every print statement
ReplyDeleteprint M pattern
ReplyDeletei need the code for a sunflower pattern. can any one pls help me.
ReplyDeleteI'm very glad when i get this site because this programme is very important.
ReplyDeleteI'm very glasd after getting this site it's very helpful.
ReplyDeleteReally guyss this site's vey helpful!! Thnks NIMISH GARG sir...
ReplyDeleteA
ReplyDeleteA B
A B C
A B C D
A B C
A B
A
what is code for above pattern in C
#include
Deleteusing namespace std;
int main()
{
for(int i=1;i<=4;i++)
{
char a='A';
for(int j=1;j<=i;j++)
{cout<<a;a++;}
cout<<endl;
}
for(int i=1;i<=3;i++)
{
char a='A';
for(int j=1;j<=4-i;j++)
{cout<<a;a++;}
cout<<endl;
}
return 0;
}
J I H G
ReplyDeleteF E D
C B
A
#include
Deleteusing namespace std;
int main()
{
char a='J';
for(int i=1;i<=4;i++)
{
for(int j=1;j<=5-i;j++)
{cout<<a;a--;}
cout<<endl;
}
return 0;
}
This comment has been removed by the author.
ReplyDeleteA
ReplyDeleteBA
BAB
ABAB
/*
DeleteA
BA
BAB
ABAB
*/
#include
using namespace std;
int main()
{
int i,j,n;
cin>>n;
int value=65;
for(i=0;i<n;i++)
{
for(j=0;j<=i;j++)
{
if(i==0)
value=65;
if(value==65)
{
cout<<char(value);
value=66;
}
else
{
cout<<char(value);
value=65;
}
}
cout<<"\n";
}
return 0;
}
I need the code for the following print:
ReplyDeleteA B C D C B A
A B C C B A
A B B A
A A
PLEASE REPLY ME SOON
I need this source code
Delete
ReplyDeleteA
B A
C B A
D C B A
how to write this program in c++
whats pattern for
ReplyDeleteaaabbbccc
aabbcc
abc
write code for following pattern
ReplyDeleteBRINDIA
R
I
N
D
I
A any one help to me
write code for following pattern
ReplyDeleteBRINDIA
R
I
N
D
I
A any one help to me
#include
Deleteint main()
{
int i,p,j;
char str[]="BRINDIA";
printf("%s\n",str);
for(i=1;i<7;i++)
{
printf("%c\n",str[i]);
}
}
#include
ReplyDeleteusing namespace std;
int main()
{
char a='A';
for(int i=1;i<=4;i++)
{
for(int j=1;j<=i;j++)
{cout<<a;a++;}
cout<<endl;
}
return 0;
}
E
ReplyDeleteDE
CDE
BCDE
ABCDE
BCDE
CDE
DE
D
CAN SOMEONE MAKE THIS PATTERN?
This comment has been removed by the author.
ReplyDeleteABCBC
ReplyDeleteBCB
C
A
ReplyDeleteBCD
EFGHI
pattern mein A, C ke upper h aur second line ke F ke upper se start h
DeletePlz help me to print the following pattern
ReplyDeleteA
12
abc
ABCD
12345
abcdef
When n=6
Hello,
ReplyDeleteI m Really looking forward to read more. Your site is very helpful for us .. This is one of the awesome post i got the best information through your site and Visit also this site
https://sattakingdarbar.com/
Really many thanks
Helpfull Information
ReplyDeleteSatta King
Satta King
Super information
ReplyDeletewhat is pattern for this
ReplyDelete**********
**** ****
*** ***
** **
* *
** **
*** ***
**** ****
**********
A
ReplyDeletea b
A B C
a b c d
A B C D E
1
ReplyDelete1 4
1 4 9
1 4 9 16
1 4 9 16 25
1 0 1 0 1
ReplyDelete1 0 1 0
1 0 1
1 0
1
I need a pattern as
ReplyDelete1 2 3 4 5 4 3 2 1
1 2 3 4 A 4 3 2 1
1 2 3 A B C 3 2 1
1 2 A B C D E 2 1
1 A B C D E F G 1
ReplyDeleteE
DE
CDE
BCDE
ABCDE
i need pattern like above
A
ReplyDeleteBA
CBA
DCBA
EDCBA
*********
ReplyDelete****bb****
***bbbb***
**bbbbbb**
*bbbbbbbb*
**bbbbbb**
***bbbb**
****bb****
**********
a
ReplyDelete*a
a*a
*a*a
a*a*a
code plss??
i think this could help u
Delete#include
void main()
{
int i,j;
for(i=1;i<=4;i++)
{
for(j=1;j<=4;j++)
{
if (i==j)
printf("a");
else if (i>j && (i+j)%2 != 0)
printf("*");
else if (i>j && (i+j)%2==0)
printf("a");
else
printf(" ");
}
printf("\n");
}
}
i require this pattern program
ReplyDeleteabcdefgfedcba
abcdef fedcba
abcde edcba
abcd dcba
abc cba
ab ba
a a
I want this pattern program
Delete1
ReplyDelete6 2
10 7 3
13 11 8 4
15 14 12 9 5
Sir,your blog is not working anymore.Do something
ReplyDeleteBest blog for C Programming ... https://cprogrammingworld123.blogspot.com/
DeleteGara sửa chữa xe mercedes
ReplyDeletesửa chữa xe mercedes
sửa chữa xe mercedes
https://techcar.vn/gara-sua-chua-xe-mercedes-uy-tin_n409_c214.aspx
1
ReplyDelete10
100
1000
10000
A B C D E D C B A
ReplyDeleteA B C D D C B A
A B C C B A
A B B A
A A
PLEASE HELP ME TO SOLVE THIS
Pattern in c . please help
ReplyDeleteABCDE
FGHI
JKL
MN
O
ABCDE
DeleteABCD
ABC
AB
A
Bata dooo
DeleteA B C
ReplyDeleteA B
A
A
ReplyDeleteABA
ABCBA
ABCDCBA
ABCDEDCBA
Help me to print this pattern
ReplyDeleteABCDE
ABCDABC
ABA
DEFGH
ReplyDeleteCDEF
BCD
AB
@
Help me boss !
https://mamnonbanmai.edu.vn/
ReplyDeleteplz print this result Write a C program to print the following pattern:
ReplyDeleteABCDEFG
ABCDE
ABC
A
Write a C program to print the following pattern:
ReplyDeleteABCDEFG
ABCDE
ABC
A print this result not above one
bro thanx for share the pattern code it's helpfull for us and thanks again for explanation #Madhur bazar
ReplyDeleteÖnemli giriş adreslerine buradan ulaşabilirsiniz.
ReplyDeletebetturkey giriş
betpark giriş
USR
bro thanx for share the pattern code it's helpfull for us and thanks again for explanation
ReplyDeleteBest NDT Training Institute in India
🕰️ Discover the World of Watches with These Informative Websites! 🕰️
ReplyDeleteIf you have a passion for watches like I do, you're in for a treat! I've come across some fantastic websites that cater to all things horology, and I can't wait to share them with you. These websites are not only well-designed but also packed with insightful and engaging content that every watch enthusiast would love to explore.
Jordan Writes 📝 - 🌟🌟🌟🌟🌟
If you want to stay on top of the latest watch trends and get hands-on reviews, look no further! Their article on the 10 Best Watch Blogs to Follow in 2023 is a gem for watch enthusiasts seeking valuable insights.
Daily Business Post 📰 - 🌟🌟🌟🌟🌟
A comprehensive guide that every watch-loving gentleman should read! 10 Types of Popular Watches Every Man Needs to Know is an ultimate guide to help you make a statement with your timepiece.
Pashudhanjsnk 🌐 - 🌟🌟🌟🌟🌟
If you crave variety and diversity in watch brands, you'll find it here! Explore their article highlighting the Top 9 Watch Brands from Different Countries, and you might discover your new favorite brand.
Tech Bullion 💡 - 🌟🌟🌟🌟🌟
Journey through time with this enthralling read on the History and Evolution of Dial Watches. The evolution of watches is beautifully documented here, making it a must-read for history buffs.
Weekly News Time 🗞️ - 🌟🌟🌟🌟🌟
Delve into the world of craftsmanship and innovation with their list of the 10 Best Watch Makers in the World. A true celebration of horological excellence!
Blogging Mint 💻 - 🌟🌟🌟🌟🌟
Are you looking for tips to find your perfect timepiece? Check out their article on Tips for Buying Timeless Watches, and you'll be well-equipped for your next watch purchase.
Original News Break 🗞️ - 🌟🌟🌟🌟🌟
Dive watches for every occasion! Whether you're hitting the pool or exploring the ocean, this article has got you covered with the best options.
Gonobuddy 🤝 - 🌟🌟🌟🌟🌟
Seeking unique dive watch alternatives? Look no further! Their article on 10 Unbelievably Awesome Alternatives to Famous Dive Watches is a treasure trove of exciting options.
NYB Post 🗞️ - 🌟🌟🌟🌟🌟
Another excellent resource for alternative dive watches! Their list of 10 Unbelievably Awesome Alternatives to Famous Dive Watches will inspire your next adventurous choice.
Tech Time Tools ⏱️ - 🌟🌟🌟🌟🌟
Dive into a comprehensive comparison between Citizen Dive Watches and their competitors! The article provides valuable insights to aid in your decision-making process.
🎉 Dive into these websites and embark on an incredible journey through the world of watches! 🎉
I really enjoyed this bloag..especially specific poitns..nice blog!! Madhur Satta Matka
ReplyDeleteCool and I have a dandy offer you: How Much Renovate House house renovation and design
ReplyDelete