TRENDING NEWS

POPULAR NEWS

What Do You Think Of My Rap Rewrite 1-10

Rate my lyrics 1 to 10?

the end of my question got cut off

hey D.C. can you take a hint
you ****ed up the economy so bad
you couldnt pay the white houses rent

and these are my lyrics, my last 10 accounts all got suspended

Rate this freestyle *record*?

It was funny, and it sounded a lot better than the one you recorded on the Rain instrumental. Your flow is ridiculously bugged out in a good way! It's original and I wouldn't change it, but I would try to sharpen the delivery a little bit, which only comes with time (especially since it's only a freestyle). I can tell you were being more experimental with it, and it was good. Keep doin your thing!

Can you rate my rap please?

Doesn't make sense bro

How can I write an algorithm that calculates the factorial of a number?

The simplest but not the most efficient way is using a recursive algorithm. When writing a recursive algorithm an you have to establish two things: 1. What's the recursive rule? In this case is pretty obvious: the factorial of a given natural number is the factorial of the previous natural number multiplied with the number itself.In mathematical notations: n! = (n-1)! * n2. When to stop the recursive rule?To be noted that the above rule does not apply to all natural numbers because zero does not have a previous number - it's the smallest natural number. Thus you have to take for granted the the factorial for 0 is 1. Mathematically 0! = 1. (*)Knowing this is pretty straightforward in writing the algorithm:integer factorial(integer n) {
if (n < 0) {
error: "Factorials cannot be defined for negative numbers"
}
if (n == 0) {
return 1;
}
return n * factorial(n - 1);
}
(*) Why 0! = 1 is another discussion. One can define the factorial of a number n is the number of permutations a from a set with cardinality n can be arranged in; the empty set can be arranged only in one way thus 0! = 1.

HELP PLEASE 10+ POINTS I WILL RATE YOU BEST.... I AM STUCK!!?

I was doing my school wok and got stuck anyone please tell me how do I do this?

Source text:
Shams and delusions are esteemed for soundest truths, while reality is fabulous. If men would steadily observe realities only, and not allow themselves to be deluded, life, to compare it with such things as we know, would be like a fairy tale and the Arabian Nights' entertainments. If we respected only what is inevitable and has a right to be, music and poetry would resound along the streets. When we are unhurried and wise, we perceive that only great and worthy things have any permanent and absolute existence, that petty fears and petty pleasures are but the shadow of the reality. This is always exhilarating and sublime. By closing the eyes and slumbering, and consenting to be deceived by shows, men establish and confirm their daily life of routine and habit everywhere, which still is built on purely illusory foundations.


The source text above has been shortened in the excerpt below. Add correct punctuation to the excerpt to show that you are quoting only portions of the original. Refer to the source text as needed.

Shams and delusions are esteemed for soundest truths, while reality is fabulous. When we are unhurried and wise, we perceive that only great and worthy things have any permanent and absolute existence By closing the eyes and slumbering, and consenting to be deceived by shows, men establish and confirm their daily life of routine and habit everywhere,

10+!! points

TRENDING NEWS