Java - Variable Scope

后端 未结 8 1496
心在旅途
心在旅途 2020-12-22 08:42

I\'m brand new to java and I have a super n00bish question. (I do have some general programming knowledge). I\'m trying to access the variable \"item\" to no avail. Can some

8条回答
  •  有刺的猬
    2020-12-22 09:24

    Declare variable Item outside the do-while loop.

    int exit = 0;
    String item = null;
        do {
        System.out.println("Enter item number: ");
        itm = input.next();
    

提交回复
热议问题