Code:
Account acc1 = new Account();
Account acc2 = new Account();
Account acc3 = new Account();
acc1.insert("AAA", 1, 2, 3, 4, 5, 6);
acc2.setCode("CCC");
acc3.setCode("BBB");
for all 3 of them, while it should print:
AAA 1 2 3 4 5.0 6.0
CCC 0 0 0 0 0.0 0.0
BBB 0 0 0 0 0.0 0.0
The Account class works perfectly, and I know this because it got 10/10 on my previous project.
