public class Class {
public static void main(String[] args)
{
for(int i = 1; i <= 100; i++)
{
System.out.print((i^2) + ",");
}
}
}
so i got that code, what does the carrot sign do in java, cause that sure as hell doesn't print out the squares of i...
