How to learn programming logics,its being quite difficult ,is there any method? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 2

How to learn programming logics,its being quite difficult ,is there any method?

7th Jan 2018, 8:33 PM
Adao Abdala
Adao Abdala - avatar
4 ответов
+ 11
just practice and everything be OK. At the beginning is always hard...
7th Jan 2018, 8:54 PM
Vukan
Vukan - avatar
+ 4
There are mobile games for learning logic. Just type programming logic games into playstore.
7th Jan 2018, 8:57 PM
emmey
emmey - avatar
+ 2
thanks guys... i will persist
7th Jan 2018, 9:00 PM
Adao Abdala
Adao Abdala - avatar
0
Think of logic as a way of testing a condition or asking a question. We use it everyday to make conditional choices. For instance, you could be asked to give a discount to any seniors shopping at your store. In real life, we would ask their age and give them a deal if old enough. In programming, we would ask: is customerage >= seniorage and if true, do a calculation on the price. You can also test for multiple conditions using AND, OR, or NOT. You could only give female seniors a discount with a statement such as: is customerage > 65 AND customergender == F. This allows you to perform multiple tests in one statement.
10th Jan 2018, 4:25 PM
Christopher Oldfield
Christopher Oldfield - avatar