From CS160

Main: Lab3Solution

public class Lab3 {

	public static void main(String[] args) 
	{
		System.out.println(11 + 5);
		System.out.println(11 / 5);
		System.out.println(11.0 / 5.0);
		System.out.println(11.0 / 5);
		System.out.println(11 % 5);
		System.out.println(3 + 5 * 6);
		System.out.println(0.1 + 0.2 - 0.3);
	}
}
Retrieved from http://www.cs.colostate.edu/~asa/courses/cs160/fall08/pmwiki/pmwiki.php/Lab3Solution
Page last modified on September 26, 2008, at 10:55 PM MST