CJCoding With Joseph
15per day
← Back to Question List
Java Code Walkthrough #11

Simple Addition Print

easyPrinting

📄 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}

🎯 Your Answer