Name: Anonymous 2007-09-23 10:26 ID:tKY5soH8
public static void main(String[] args)
{
double number = (1 / 3);
System.out.println("1 / 3 = " + number);
}why the fuck does that output:
1 / 3 = 0.0
Process completed.I'm confused
(it's java, btw)