Search:

Type: Posts; User: lim131

Search: Search took 0.10 seconds.

  1. Re: It is possible that not using array to list the positive integer

    while(number !=0)
    {
    number=in.nextInt();

    if(number <1)
    {
    System.out.println("Please enter positive integer");
    ...
  2. Re: It is possible that not using array to list the positive integer

    skip to next iteration..
    but just now i put continue inside the while...it seem appear same things..
  3. Re: It is possible that not using array to list the positive integer

    i change to this code.


    Scanner in = new Scanner(System.in);

    int biggest =0;
    int smallest =100;
    int number =1;

    System.out.print("Write...
  4. Re: It is possible that not using array to list the positive integer

    sorry to sent wrong site...
    can wait a minute..due to my netbean got a problem.i need re install back..sorry for that..
  5. It is possible that not using array to list the positive integer

    hi...
    i got problem with my code.
    i unable to display the largest and smallest integer in range of 1 to 100...

    This is the title.
    Write a program that reads a list of positive numbers < 100 and...
  6. It is possible that not using array to list the positive integer

    hi...
    i got problem with my code.
    i unable to display the largest and smallest integer in range of 1 to 100...

    This is the title.
    Write a program that reads a list of positive numbers < 100 and...
Results 1 to 6 of 6