Created
October 10, 2022 13:30
-
-
Save SaBenBurra/01e9798c674034f2b95bc8d377e76826 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Main { | |
public static void main(String[] args) { | |
int number1 = 5; | |
int number2 = 10; | |
number1 = number2; | |
number2 = 15; | |
System.out.println(number1); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment