Archive

Archive for July, 2009

Diverse

July 1st, 2009
Personlig:
Teknologi:
Fritid:

Information , , , ,

isPrime

July 22nd, 2009
	public static boolean isPrime(int x)
	{
		if(x < 3)
			return (x == 2);

		for(int i = 3; i <= Math.sqrt(x); i++)
			if(x % i == 0)
				return false;

		return true;
	}

Code

XKCD, Compiling

July 6th, 2009