public class Int { public static void main(String[] args) { int f = 1; int c = 7; System.out.println("Value of int variable f is :" + f); System.out.println("Value of int variable c is :" + c); } }
Output: |
---|
Value of int variable f is:1 |
Value of int variable c is:7 |