Posts by Rodrigo G Rodrigues • 81 points
2 posts
-
4
votes1
answer485
viewsA: Exercise Algorithm Given the values of x real and n natural positive, calculate
If you look at the formula: S = (x+1)/1! + (x+2)/2! + (x+3)/3! + ... + (x+n)/n! Note that only 1 repetition is required that iterates all values from 1 to n. Just like you did in the first…
-
1
votes1
answer55
viewsA: Conversion of a LINQ query into methods
To use Join, it is much better to use syntax instead of methods, since the Join() method has {4.5} parameters, which makes reading more difficult. Still, answering your question, your query would…