How to display a list of bill?

179 Views Asked by At

I have declared "price" and "category", now I wish to display like this:

productname     price       id      amount
water           25          3       3(bottles)

(a list at the end of output that shows the bill)

How to do that?

This is what I've tried so far:

do {
    String Enterproducts=in.next();
    if(Enterproducts.equals("Stop")){
        break;
    }
    int n = in.nextInt();
    for(int i=0; i<category.length; i++){
        if(Enterproducts.equals(category[i])){
            System.out.print(" "+category[i]+" "+price[i]+" "+n);
            System.out.println();
        }
    }
} while(in.hasNext());
1

There are 1 best solutions below

0
On BEST ANSWER

Try this

do {
    String Enterproducts=in.next();
    if(Enterproducts.equals("Stop")){
        break;
    }
    int n = in.nextInt();
    for(int i=0; i<category.length; i++){
        if(Enterproducts.equals(category[i])){
            System.out.print(String.format("%-20s %s",category[i], price[i], n));
            System.out.println();
        }
    }
} while(in.hasNext());

With %-20s you are specifing a space lenght.

As an alternative, you can do it as you did it before, but using tabs instead spaces (tabs = \t).