variables:-
Variable is manly use for memory location. Java have three type of variable Example of variables:- public class airthmatic_operater { public static void main(String[] args) { int a,b; a=20; b=10; System.out.println(a+b); } } output:- 30 Variable in java Variable is manly use for memory location. Java have three type of variable […]