Search:

Type: Posts; User: Norm

Search: Search took 0.12 seconds.

  1. Replies
    4
    Views
    1,376

    Re: Need help with Java assignment

    To get that to print out you need to print 5 different Strings:
    66
    +
    3
    =
    69

    You can build the full String to be printed by using the + operator to concatenate the individual Strings into a...
  2. Replies
    4
    Views
    1,376

    Re: Need help with Java assignment

    The data types of the variables will determine how the compiler processes the + operand.
    It they are numeric (like int): 6 + 7 will return 13. If Strings: "6"+"7" will return "67"
    If you want the +...
Results 1 to 2 of 2