← Back to Question List
Java Code Walkthrough #11
Simple Addition Print
📄 Code
Read carefully — what does this print?1public class Main {2 public static void main(String[] args) {3 int x = 4;4 int y = 7;5 System.out.println(x + y);6 }7}