ShaiB7187 ShaiB7187 19-12-2022 Mathematics Answered What is the value inside the value variable at the end of the given code snippet? public static void main(String[] args) { int value = 3; value = value - 2 * value; value++; }