for int i : variable java code example
Example 1: Variables in java
// instance variable in java example
public class InstanceVariableDemo
{
// instance variable declared inside the class and outside the method
int c;
public void subtract()
{
int x = 100;
int y = 50;
c = x - y;
System.out.println("Subtraction: " + c);
}
public void multiply()
{
int m = 10;
int n = 5;
c = m * n;
System.out.println("Multiplication: " + c);
}
public static void main(String[] args)
{
InstanceVariableDemo obj = new InstanceVariableDemo();
obj.subtract();
obj.multiply();
}
}
Example 2: how do you set an integer to a number in java
int num = 9;