<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">// Project 2
// Solutions to PartB

public class p2Operations {
    public static void main(String[] args) {

	/* 1 */ System.out.println(1 + 9/19.); // 1.4736842105263157

 	/* 2 */ System.out.println(4*4 + 17*23); // 407

       	/* 3 */ System.out.println(true &amp;&amp; (false || true) ); // true

	/* 4 */ System.out.println('a' - 'A' + 18); // 50

	/* 5 */ System.out.println((int) 1.234e3/-26.89); // -45
    }

}
</pre></body></html>