Tagged Questions
7
votes
6answers
1k views
Languages/Methods to Learn for Scientific Computing?:
I'm a second-semester Junior working towards a Computer Science degree with a Scientific Computing concentration and a Mathematics degree with a concentration on Applied Discrete Mathematics. So, ...
2
votes
5answers
723 views
Which programming languages doesn't use operator precedence besides Lisp like languages?
And what do you think about operator precedences? Would be harder programming in language where the operations are executed in sequential order?
Ex.:
2 + 3 * 4 == 20
2 + (3 * 4) == 24
Ok, Lisp ...