0
Does anyone have any good suggestions for a beginner project I could do in C++? (I been studying it for a month now)
Im a beginner so my skills aren't that great and i want suggestions and/or advice so I can perfect my C++ to a respectable level. I'm learning C++ in college as an intro course but its difficult to grasp the concepts in class so here I am lol.
3 Réponses
0
I made a basic calculator with the help of my notes and stuff but idk if i would remember how to do it from memory but i always feel like if i cant do it from memory then i didnt really understand the concept
0
Wdym by 10 variations ? Code the different ways to perform the same task? And i did google stuff but alot of it was very complex imma keep digging tho
0
for beginners..
you could start by completing the challenges here in sololearn like trimorphic numbers and disarium numbers.
there are also some c++ exercise you can find in google. i assumed you have fully completed the c++ course here in sololearn with full understanding to have a basic idea of it.
also i can suggest you try create a program that calculates both area of circle and its circumference using classes. after that, increase the difficulty to cylinders and pyramids. this was how i become familiar with classes and object oriented programming.
when you think youre good, you will indirectly search for new methods or functions.
c++ is kind of low level, so it will require a lot of trial and error and debugging before your code will work. basically, practice makes perfect.
edit: try to create a program that list down all prime numbers in a range.