public class TutorialOne { public static void main(String[] args) { int a = 7; int b = 8; int c = 9; //Add a comment before each statement that causes an error, that explains the error; //then, comment out each statement that causes an error. a = b; a = 67; b = 8.7; a + b = 8; a * b = 12; c = a - b; c = a / 2.3; boolean t = a; a /= 4; a += c; //Write a comment after each System.out.println statement that contains the actual output //of the statement. int d = 18 / ( 6 * 3 ); System.out.println(d); int e = 18 / 6 * 3; System.out.println(e); float f = 10f / 3; System.out.println(f); double g = 23 / 5; System.out.println(g); double h = 23 % 5; System.out.println(h); int i = 4 + 8 / 2; System.out.println(i); double j = 23.0 / 5; System.out.println(j); int k = (int) 23.0 / 5; System.out.println(k); double m = (double) ( 23 ) / 5; System.out.println(m); int n = 6; n++; System.out.println(n); int p = 6; System.out.println(--p); int q = 6; q += 2; System.out.println(q); char w = 'A'; w += ' '; System.out.println(w); //Add a comment before each statement that causes an error, that explains the error; //then, comment out each statement that causes an error. int r = 4.7; int s = 7.5 % 4; char u = 67; boolean v = 1; int t = 6 / 0; } }