Search:

Type: Posts; User: ChristopherLowe

Search: Search took 0.12 seconds.

  1. Re: plz help me with this program.....i would be highly...obliged if i'm helped

    Question: 1 4 9 16 25 36 49 64 81 100

    My answer:

    for (int i = 1; i < 11; i++) {
    int temp = i*i;
    System.out.println(temp);
    }

    Comments:
  2. Re: plz help me with this program.....i would be highly...obliged if i'm helped

    ...



    for (int i = 1; i < 11; i++) {
    int temp = i*i;
    System.out.println(temp);
    }
  3. Re: plz help me with this program.....i would be highly...obliged if i'm helped

    public class WhatIsYourQuestion {
    public static void main(String[] args) {
    System.out.println("1");
    System.out.println("4 9");
    System.out.println("16 25 36");
    ...
Results 1 to 3 of 3