Search:

Type: Posts; User: freakinawesome

Search: Search took 0.06 seconds.

  1. Replies
    5
    Views
    1,698

    Re: Is "count" in this loop a keyword?

    I think I get it now
    int "count" is created and set it to 1, then if count is less than 11 print text to screen......plus the count, increase count by 1.
    Also this isn't homework, it's an example...
  2. Replies
    5
    Views
    1,698

    Is "count" in this loop a keyword?

    class WhileDemo {
    public static void main(String[] args){
    int count = 1;
    while (count < 11) {
    System.out.println("Count is: "
    +...
Results 1 to 2 of 2