How to be good at programing logic ???? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

How to be good at programing logic ????

23rd Jul 2017, 9:28 PM
Amro Elkhodari
Amro Elkhodari - avatar
5 Answers
+ 7
You can use these Boolean simplification methods to simplify any complex logic in your programs: Commutative: a && b == b && a a || b == b || a Associative: a && (b && c) == (a && b) && c == a && b && c a || (b || c) == (a || b) || c == a || b || c Distributive: a && (b || c) = a && b || a && c Miscellanea: a && false == false a && true == a a && a == a a && !(a) == false a || false == a a || true == true a || a == a a || !(a) == true !(!(a)) == a a || a && b == a a || !(a) && b == a || b (a && b) && (a && c) == a || b && c
23rd Jul 2017, 10:13 PM
Erik Johanson
Erik Johanson - avatar
+ 4
I want to make PC programs and I am learning C++
24th Jul 2017, 7:42 AM
Amro Elkhodari
Amro Elkhodari - avatar
+ 2
what kind of programs do you want to make?
23rd Jul 2017, 9:53 PM
CarLoiD
CarLoiD - avatar
+ 2
So, I always believe that is good to learn logic praticing logic, so if you want to make PC programs and you are crazy enough to like native API and how programming really is, study and program with native API of the OS(I do this way)... but if you are not this crazy, you can pick a graphics library and make tests and study too, there are SFML, SDL, Qt, WxWidgets... a variety of them...
24th Jul 2017, 7:46 AM
CarLoiD
CarLoiD - avatar
23rd Jul 2017, 9:36 PM
Gabrielle Cristine
Gabrielle Cristine - avatar