Question

I'm seeking a(very) short statement(in any language) that can make the CPU busy for like a second or a half. The statement should consume CPU cycles, not IO stuff.

Was it helpful?

Solution

Psuedocode:

A = 2
StartTime = GetTime()
While (GetTime() - StartTime) < 1.0
  A = A * 2

OTHER TIPS

Using java BigIntegers, you could try and implement http://en.wikipedia.org/wiki/Ackermann_function.

That'll keep you going for a while.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top