// Testing your parser/compiler for MiniJava+ extensions class MJplustest { public static void main(String[] args) { String s = "no kidding\n"; int x = 4; if (!(x==x+1)) System.out.println(s); bankaccount myaccount = new bankaccount(); bankaccount youraccount = new bankaccount(); int m = myaccount.init(500); int y = youraccount.init(800); m = myaccount.withdraw(200); y = youraccount.deposit(100); m = myaccount.withdraw(50); System.out.println(m); System.out.println(y); if (y