
-----------------------------------
efus
Sat Oct 04, 2008 4:09 pm

Big theta notation
-----------------------------------
Hi,
I need to make a big-theta notation on an algoritm I made. The algoritm is soposed to find factors of a number. This is the algoritm implemented in java:

public class factor {

	public static void main (String argv[]) 
	{	
		int number =(Integer.parseInt(argv[0]));
		int counter = 0;

		for(counter = 1 ; counter 