Recent content by Denise_33

  1. D

    need more clarity

    Ok I'm trying to figure out this problem using a t-chart for (int i = 1; i < 5; i++) for(int k = i; k > 2; k--) System.out.print(k + ""); My t-chart i 1 2 3 4 5 K - - 2 3 4 output 2 3 4 suppose to be 3 4 3 how???