Can someone help me what do you mean by move. i tried to add make int A a static variable so it can be passed but if i erased the static in int C i wont cause im using static A & B please help me undestand thanks..
package com.codegym.task.task06.task0615;
/*
Feng Shui and statics
*/
public class Solution {
public static int A = 5;
public static int B = 3;
public static int C = A * B;
public static void main(String[] args) {
A = 15;
}
}