Input
Output
public class Calculation{ public static void main(String args[]) { Cal cv=new Cal(); System.out.println("Before Interest Amount "+cv.amt); cv.interest(cv); System.out.println("After Interest Amount "+cv.amt); } } strictfp class Cal { double amt=60; void interest(Cal cv){ cv.amt=cv.amt+7.2; } }