Search:

Type: Posts; User: Norm

Search: Search took 0.14 seconds.

  1. Replies
    5
    Views
    1,290

    Re: HELP ME TO SOLVE THIS JAVA FOR LOOP PROGRAM

    The code does only this:
    i*i*i is i^3

    Try writing a loop to compute the power instead of using a single expression on one line.
    if x = i
    then x*i is i*i
    then x*i is i*i*i
    and again x*i is...
  2. Replies
    5
    Views
    1,290

    Re: HELP ME TO SOLVE THIS JAVA FOR LOOP PROGRAM

    You have a problem with your keyboard's cap lock key. All the letters in your post are uppercase.
    Can you fix your post to be in normal case?

    Post the code you are working on so we can see what...
Results 1 to 2 of 2