Search:

Type: Posts; User: winwin

Search: Search took 0.07 seconds.

  1. Re: HELP: My program is having an error which says "cannot find symbol", but the symbols are actually there, I think I placed it in the wrong place. Please tell me where I got it wrong.

    hi can you give an example on how I can put the values of the two arrays in one loop?

    thank you so much, I'm so sorry for the inconvenience

    --- Update ---

    oh nevermind, I already got it,...
  2. Re: HELP: My program is having an error which says "cannot find symbol", but the symbols are actually there, I think I placed it in the wrong place. Please tell me where I got it wrong.

    Should I declare i and j outside of the loop ?

    I wanted to print the values from the loops in the last statement with errors.
  3. HELP: My program is having an error which says "cannot find symbol", but the symbols are actually there, I think I placed it in the wrong place. Please tell me where I got it wrong.

    I have to make a program using a one-dimensional array that accepts as input an integer value asking for the number of elements for each list. This will be used to generate random numbers (10-99) for...
  4. Re: Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    Proper divisors of a number is its factors other than itself.
    The program should compute the sum first in order to identify whether the number is perfect, deficient or abundant.

    Can you point...
  5. Re: Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    The integer is perfect if the sum of its positive proper divisors is equal to the number itself.
    If this sum is less than the integer, the numbers is deficient.
    If the sum is greater than the...
  6. Re: Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    the number can only be one of them
  7. Re: Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    I need to make a java program that will read an input positive integer and then checks if it is a perfect, deficient or abundant number using the for-loop.
    for example: 6 is a perfect number since...
  8. Please Help Me on how to make a program which reads a positive non-zero integer as input and checks i it is perfect, deficient or abundant.

    /*A positive, non-zero integer, N, is said to be perfect if the sum of its positive proper divisors is equal to the number itself. If this sum is less than N, the numbers is said to be deficient. If...
Results 1 to 8 of 8