
after compilation of progra files, following error messages were shown on command prompt.identify the causes for those specific errors.
i) System.out.println("No of items:"tooa1Item);
^
1 error
ii) Testing.java:10:cannot find symbol
Location:class Testing Symbol:variable count
++count;
^
2 eeors

It seems that you haven't declare a variable named count and in System.out.println() statement, you have written wrong syntax.
Do correction: System.out.println("No of items:"+tooa1Item);
After the modification, if you found error then post your code.