Pattern Printing | Problems on Loops - Part 1 | Lecture 7 | C++ and DSA Foundation Course

preview_player
Показать описание
To access detailed notes and assignments on each lecture, please enroll into the course at our PWSkills Website.

▶️ PW Skills LinkedIn Channel -

▶️ C++ and DSA Foundation Course

Timestamps:
00:00 - Rectangular pattern
13:26 - Triangular pattern
24:24 - Numerical rectangular pattern
35:23 - Numerical triangular pattern

#PWSkills #CollegeWallah #CPP #OperationsInCPP #C_Language_Programming #DSA #DataStructureAlgorithm #DSAClasses #PhysicsWallah #PhysicsWallahSkills
Рекомендации по теме
Комментарии
Автор



▶ PW Skills LinkedIn Channel -

CollegeWallahbyPW
Автор

Ma'am is a request to you that please continue all the classes in such a speed, today's class was very good, today I have also understood

neelesh.
Автор

One of the best teacher for c++ in the world of thanks from

jmvpiot
Автор

When I started the video ma'am logic and mine were not even matching anywhere, But by the end of the video my logic and ma'am logic was going on the same track.
Very helpful ❤content, Thanks for the lovely content.

nabinkoirala
Автор

29:42 -

int n;
cin>>n;

for(int i=1; i<=n; i++){
for(int j=1; j<=n+2; j++){
cout<<j;
}
cout<<endl;
}

ashutoshraj
Автор

We are Lucky, We are learning from Urvi Di's Tutorial...Thanks Di..

dfordigitalduniya
Автор

I just complete c++, now i am covering dsa by the help of this awesome series, thanks you.

samirneupane
Автор

You clear my star pattern doubt I check all youtube video but your way of explanation is awesome ❤️🙏🏼

Piyush_Gupta
Автор

Amazing, this is litreally the best video which explains these topics, thanks a lot

hmmmmokayidc
Автор

Legends don't use loop instead of loops they prefer multiple cout statements!!!😂😂

shubhamdhami
Автор

Thanku ma'am. Feeling so satisfied after running the code.. 😊😌

DebugYaar
Автор

16:09 -
// Inverted Triangle
int n;
cin>>n;
for(int i = 1; i <= n; i++){
for(int j = 1; j <= n-i+1; j++){
cout << "*";
}
cout << endl;
}

29:42 -
// Simple Numerical Rectangle
int n;
cin>>n;
for(int i=1; i<=(n-2); i++){
for(int j=1; j<=n; j++){
cout<<j;
}
cout<<endl;
}

30:28 -
// Hollow Numerical Rectangle
int rows, columns;
cin>>rows>>columns;
for(int i=1; i <= rows; i++){
for(int j=1; j <= columns; j++){
if(i==1 || j==1 || i==rows || j==columns){
cout<<j;
}
else{
cout<<" ";
}
}
cout<<endl;
}

35:49 -
// Numerical Triangle Pattern
int n;
cin>>n;
for(int i=1; i<=n; i++){
for(int j=1; j<=i; j++){
cout<<j;
}
cout<<endl;
}

thanoz
Автор

Please, enable pdf download option on website

rahulkumardas
Автор

Thank you so much mam you're the best I searched for many playlists in cpp but this is the best playlist on yt to learn cpp 🎉❤ for pattern question I took 1.30 hr 😅to understand finally I am very clear with my loops 😂

Nisar
Автор

One thing here to notice is that you yourself must practice (dry run) on a rough page or copy because it will surely help you understand the concept otherwise it will be hard to digest the concepts taught by mam
EDIT: Practice the code on any IDE too

maniac
Автор

Happy Diwali to all PW teacher I love PW and his mind-blowing hard work 🤠

janmejaysahu
Автор

my fav teacher for c++.respect from Pakistan 😊

shaheermalik
Автор

In almost all his videos he says hello hello everyone this is urvi And welcome to another video by pw skills 🎉🎉

harshitsharma
Автор

I am unable to refer the questions notes of this video of pattern programs in pw skills website, it is showing error message alert on this website, please fix this issue as soon as possible.

FoodMania
Автор

It was a really good problem session, I tried doing all questions by myself and managed to do everything although some of my programs were a bit more complicated, but i have also saved the simple approach you gave

lavnish
join shbcf.ru