📚 Learn how to solve problems and build projects with these Free E-Books ⬇️ C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook 🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/ Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time! 💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10). Use it quickly, because it will be available for a limited time. #include #include using namespace std; int main() { int length; cout > length; char symbol; cout > symbol; //triangle shape for (int i = 1; i
Reached the end of the playlist for beginners. I'll practice the things taught here until I truly understand them. Thanks for your time teaching us and I'll move onto the next playlists! :)
I've just started a Masters Degree in applied computing. As a done my undergrad in fine art I have no experience in programming at all. Your videos have been amazingly helpful!!!
Just wanted to say a huge thank you for your C++ course. I originally worked with BASIC but support was limited and even when compiled, BASIC is very slow. Your courses have been easy to follow and I have now completed my first app, a wire frame game based on the Atari game Asteroids. This heavily relies on SFML and EIGEN but the core was learned from yourself.
OMG!! Thank you for what you 're doing :) Right now I studying through the beginner C++ code. I want to be a game developer. Thanks for you I WILL BE!!! Also I figered out alternetive way to write a code for reversed triangle: we can change conditions in "inner for loop" instead. FOR INSTANCE ( if (j = i; j
Thanks so much! This is the first time I could do it myself without any assistance! I understood the loops concept thoroughly from your loops videos and I actually did it before watching the solution! I was taught these kind of questions when I learned python in college 2 years ago and I could not do it myself, I watched my professor's solution. But now I'm in a c++ class and I can understand it clearly!
Now done with this playlist! and I learned A LOT! Best example was that one where we learned to make pin code, it was usefully and I think that I will use it often. and that's what makes me really want to learn it. Good was those times that you went whole code trough again at the end! it makes the whole thing to click, I was kinda just copying your code and trying to understand at the same time so that recap at the end really makes the difference! all so good was that there were so much to do for myself and not just listening a lecture! But still sometime I got bored because I could not keep my self interested about things that did not seem so useful to me like calculating factorial and this how to draw triangle. I did 11 different programs with this playlist! (I mean these examples) thank you very much for making these and that way making coding possible for me! YOU REALLY MAKE VALUABLE CONTENT!!! now Ill start c++ functions playlist!
Hello saldina mam I completed the c++ basics and I am going to learn functions in c++. I had a clear view about c++ basics in this playlist. So I am looking forward for more videos in c++.
Finally ALHUMDULILLAH finished the playlist.It was a big deal...It is all thanks to Saldina the greatest teacher of all time💖💖💖💖now what next???what's the next step towards c++ coding???which playlist is the next one???help please....
Hi, first of all, just want to say thanks. i'm halfway through your 10hr video, just started 2 days ago. i find that i sometimes work backwards in my mind and sometimes i come up with the reverse of your code for EG the second triangle i just used the same outter loop and this inner loop and it worked ok. for (int j = length; j >= i; j- -)
Hi! Great tutorial as always. One thing I like to do in these videos is trying to solve the problems my self. Funny thing is, sometimes it can be really diferent. For the second part of the video (reverse triangle) I changed the inner for loop. for (int j = 1 ; j
I accidentally found a different way to make an inverted triangle If you changed the inner for loop variable "j" to be equal to "i" , and the second condition to "j
Modified code to produce triangle and inverted triangle in the same run with different symbols and a user set field width: cout symbol1; char symbol2; cout > symbol2; cout > field; for (int i = 1; i
📚 Learn how to solve problems and build projects with these Free E-Books ⬇️
C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book
Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook
🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/
Experience the power of practical learning, gain career-ready skills, and start building real applications!
This is a step-by-step course designed to take you from beginner to expert in no time!
💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10).
Use it quickly, because it will be available for a limited time.
#include
#include
using namespace std;
int main()
{
int length;
cout > length;
char symbol;
cout > symbol;
//triangle shape
for (int i = 1; i
Finally got to the end of this beginner series. I learned a lot!
Reached the end of the playlist for beginners. I'll practice the things taught here until I truly understand them. Thanks for your time teaching us and I'll move onto the next playlists! :)
I've just started a Masters Degree in applied computing. As a done my undergrad in fine art I have no experience in programming at all. Your videos have been amazingly helpful!!!
hey code beauty i fished the course just now and i don't know witch course i need to take next!!!!!!
C++ functions and then C++ OOP 🤗🤗
@@CodeBeauty thanks beauty
I finished watching the tutorial and benefited a lot and now I'm heading to the functions
Really enjoying this series! Looking forward to the many others I haven't viewed yet and your upcoming project.
Thank you for this beginners course in C++. You are a very good teacher!
God bless you...I have really mastered the basics🙏🙏
Just wanted to say a huge thank you for your C++ course. I originally worked with BASIC but support was limited and even when compiled, BASIC is very slow. Your courses have been easy to follow and I have now completed my first app, a wire frame game based on the Atari game Asteroids. This heavily relies on SFML and EIGEN but the core was learned from yourself.
Seriously when I came to C++ I was literally blind but now I learned a lot from this series ..Thanks a LOT 😇Bless YOU😘😘
OMG!! Thank you for what you 're doing :) Right now I studying through the beginner C++ code. I want to be a game developer. Thanks for you I WILL BE!!! Also I figered out alternetive way to write a code for reversed triangle: we can change conditions in "inner for loop" instead. FOR INSTANCE ( if (j = i; j
You are an amazing teacher ! I love every single videos. You are awesome !
Thank you for guiding us along the way.
Thanks so much! This is the first time I could do it myself without any assistance! I understood the loops concept thoroughly from your loops videos and I actually did it before watching the solution! I was taught these kind of questions when I learned python in college 2 years ago and I could not do it myself, I watched my professor's solution. But now I'm in a c++ class and I can understand it clearly!
Now done with this playlist! and I learned A LOT!
Best example was that one where we learned to make pin code, it was usefully and I think that I will use it often. and that's what makes me really want to learn it.
Good was those times that you went whole code trough again at the end! it makes the whole thing to click, I was kinda just copying your code and trying to understand at the same time so that recap at the end really makes the difference!
all so good was that there were so much to do for myself and not just listening a lecture!
But still sometime I got bored because I could not keep my self interested about things that did not seem so useful to me like calculating factorial and this how to draw triangle.
I did 11 different programs with this playlist! (I mean these examples)
thank you very much for making these and that way making coding possible for me! YOU REALLY MAKE VALUABLE CONTENT!!!
now Ill start c++ functions playlist!
Thanks a lot for the tutorial Saldina! You've got a real talent to teach. Loved all the videos. :) Cheers
🙏💙
finally, I finish beginner course , thank you miss "Codebeauty" ^^
Another great video. Thank you and Merry Christmas!
I really love the way that she teaches with simple language, thnkss alot for clearing this concept ❤️❤️. 🇮🇳
Hello saldina mam I completed the c++ basics and I am going to learn functions in c++.
I had a clear view about c++ basics in this playlist.
So I am looking forward for more videos in c++.
Finally ALHUMDULILLAH finished the playlist.It was a big deal...It is all thanks to Saldina the greatest teacher of all time💖💖💖💖now what next???what's the next step towards c++ coding???which playlist is the next one???help please....
Eheh. Done! Now it's time to check out functions 😎😎
Thank you so much for this beginners course, i was wondering which one of your courses should i continue with?
students wotn skip class if the teacher is this beautifull XD
very clever Beauty, I really enjoy all your C++ videos... really thank you...
Beauty Beauty ☺️ hahaha🤭
Welcome!
Hi,
first of all, just want to say thanks. i'm halfway through your 10hr video, just started 2 days ago. i find that i sometimes work backwards in my mind and sometimes i come up with the reverse of your code for EG the second triangle i just used the same outter loop and this inner loop and it worked ok. for (int j = length; j >= i; j- -)
thank you teacher for all these
When to you use int main and void main some of the program it will start with void and some of them with int
Hi! Great tutorial as always.
One thing I like to do in these videos is trying to solve the problems my self. Funny thing is, sometimes it can be really diferent.
For the second part of the video (reverse triangle) I changed the inner for loop.
for (int j = 1 ; j
Is there any way to count and show each line?
I accidentally found a different way to make an inverted triangle
If you changed the inner for loop variable "j" to be equal to "i" , and the second condition to "j
Thank you, it was really helpful
You're welcome. Glad to hear that! 😊
Thank you very much!
very good, thanks😊
If I want to flip the triangle so that the single symbol would be on the opposite side how would I accomplish that
this is exactly me when im tried of trying to implement an new function in my game engine
Can you make some videos about drawing? thx so much for your videos
playlist completed finally :)
what i should learn next
any suggestion???
You have my C++ functions playlist. That shouldn't be too hard if you finished this playlist and it is important 😊
@@CodeBeauty i have 2 questions on other videos
i will jump to next playlist after you give an answer on them
thanks
So 40k viewed the first video and 3k the last one. means that you thought +3k people programming. Thanks for your efforts.
functions video link please
Thx so much for the great video:):):); .....How can I write the first two letters of my name in this way??!
Can it be done without using nested forloop ????
Yes you can cout it a dozen of times which is exhausting
@@Unknown-uq2nc i meant to say that by using single for loop.
Thanks,mam 💕💖
Modified code to produce triangle and inverted triangle in the same run with different symbols and a user set field width:
cout symbol1;
char symbol2;
cout > symbol2;
cout > field;
for (int i = 1; i
Thanks teacher
I noticed from first tutorial that your dressing sense is pretty impressive......
Comment for Algor
thanks ☺️
Hot didi op
my code wont stop running???????