Search:

Type: Posts; User: curmudgeon

Search: Search took 0.12 seconds.

  1. Replies
    4
    Views
    2,124

    Re: Temperature Conversion Chart

    In this situation, since you're only concatenating 20 or so Strings, just use a String, and simply concatenate in the loop using the + operator.



    String myString = "";
    for (int i = 0; i <...
  2. Replies
    4
    Views
    2,124

    Re: Temperature Conversion Chart

    One solution: create a String or StringBuilder prior to your loop, append the data that you're currently displaying to the String or StringBuilder, then after the loop ends, display the String in a...
Results 1 to 2 of 2