+ 1
What should I do to improve my skills and logic in programming?
Help me.
6 Answers
+ 5
Practice. Search. Learn.
+ 3
1.Practice
2.Research
3.Have skills that are not related.. This will help increase creativity
+ 1
I recomend a good book on mathematical logic. Read and complete the exercises of the first chapters. The more complex things you don't need, just to to understand booleans, logic operators, truth-tables...
+ 1
Pseudo code. Write program logic in your everyday speaking language.
Here's an example:
If I have money in my pocket {
Enter the shop;
If I have 2 euros or more {
Buy a big bar of chocolate:
}
Else {
Buy a small lollipop;
}
Else {
Do not enter the shop;
}
That's just a nonsense example, but by jotting ideas like this down, it helps your brain figure out the logic of what you want to achieve in your program.
You just then have to research the correct syntax, conditional mathematical operators and other programming keywords to achieve the program results you want.
+ 1
Practice, More Practice and Morest Practice :D
0
Thanks đ