Page 4 of 12 FirstFirst 1234567 ... LastLast
Results 31 to 40 of 115

Thread: How Tall Are You?

  1. #31
    DarthInsinuate's Avatar Died in battle
    Join Date
    Jan 2003
    Location
    Arkham Asylum
    Posts
    4,872
    5'10" and a half last time i checked - i think i've stopped growing though
    The Sexay Half Of ABBA And Max: Freelance Plants

  2. Lounge   -   #32
    Skweeky's Avatar Manker's web totty
    Join Date
    Dec 2002
    Posts
    11,052
    no, I meant that those sizes are different too then. Over here it starts from 70, so I have 85B for example

  3. Lounge   -   #33
    Gemby!'s Avatar Poster
    Join Date
    Jul 2003
    Location
    london
    Posts
    8,797
    if your as old as guy in pic no wonder you stopped growing !!
    Single handedly destroying the NHS from the inside

  4. Lounge   -   #34
    import javabook .*;

    public class CmsToFeet
    {
    public static void main (String [] args)
    {
    final double CMS_TO_FEET = 2.54;
    final int INCHES_TO_FEET = 12;
    MainWindow mainWindow1;
    InputBox inputBox1;
    OutputBox outputBox1;

    double numbercm = 0;
    double conversion = 0;
    double numberinch = 0;
    int numberft = 0;

    mainWindow1 = new MainWindow ("Cms To Feet and Inches Convertor");
    mainWindow1.setVisible (true);

    inputBox1 = new InputBox (mainWindow1);
    numbercm = inputBox1.getDouble("Please enter a number of centimetres");

    conversion = numbercm/CMS_TO_FEET;
    numberft = (int) conversion/INCHES_TO_FEET;
    numberinch = conversion%12;

    outputBox1 = new OutputBox (mainWindow1);
    outputBox1.setVisible(true);
    outputBox1.skipLine(1);
    outputBox1.printLine(numbercm + "cm is:");
    outputBox1.skipLine(1);
    outputBox1.printLine(numberft + " feet, " + numberinch + " inches");
    }
    }
    <span style='font-size:14pt;line-height:100%'>BLAH</span>

    <span style='font-size:14pt;line-height:100%'>Wayne Rooney - A thug and a thief</span>

  5. Lounge   -   #35
    Poster
    Join Date
    Aug 2003
    Posts
    1,440
    Originally posted by 3rd gen noob@31 October 2003 - 20:22
    import javabook .*;

    public class CmsToFeet
    {
    public static void main (String [] args)
    {
    final double CMS_TO_FEET = 2.54;
    final int INCHES_TO_FEET = 12;
    MainWindow mainWindow1;
    InputBox inputBox1;
    OutputBox outputBox1;

    double numbercm = 0;
    double conversion = 0;
    double numberinch = 0;
    int numberft = 0;

    mainWindow1 = new MainWindow ("Cms To Feet and Inches Convertor");
    mainWindow1.setVisible (true);

    inputBox1 = new InputBox (mainWindow1);
    numbercm = inputBox1.getDouble("Please enter a number of centimetres");

    conversion = numbercm/CMS_TO_FEET;
    numberft = (int) conversion/INCHES_TO_FEET;
    numberinch = conversion%12;

    outputBox1 = new OutputBox (mainWindow1);
    outputBox1.setVisible(true);
    outputBox1.skipLine(1);
    outputBox1.printLine(numbercm + "cm is:");
    outputBox1.skipLine(1);
    outputBox1.printLine(numberft + " feet, " + numberinch + " inches");
    }
    }
    show off.

    damn n00bla&#39;s.

  6. Lounge   -   #36
    Originally posted by noname12@31 October 2003 - 20:23
    show off.

    damn n00bla&#39;s.
    i wrote it all meself too...

    (i&#39;m a java n00b, by the way)
    <span style='font-size:14pt;line-height:100%'>BLAH</span>

    <span style='font-size:14pt;line-height:100%'>Wayne Rooney - A thug and a thief</span>

  7. Lounge   -   #37
    Poster
    Join Date
    Aug 2003
    Posts
    1,440
    Originally posted by 3rd gen noob+31 October 2003 - 20:25--></div><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (3rd gen noob @ 31 October 2003 - 20:25)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin-noname12@31 October 2003 - 20:23
    show off.

    damn n00bla&#39;s.
    i wrote it all meself too...

    (i&#39;m a java n00b, by the way) [/b][/quote]
    Well your gonna have to teach me it now, you made me all jelous

    n00bla&#39;s always trying to impress.

  8. Lounge   -   #38
    Originally posted by noname12@31 October 2003 - 20:26
    Well your gonna have to teach me it now, you made me all jelous

    n00bla&#39;s always trying to impress.
    import javabook.*;

    public class SampleTest1
    {
    public static void main(String[ ] args)
    {
    MainWindow mainWindow1 = new MainWindow("Sample Test 1");
    InputBox inputBox1 = new InputBox(mainWindow1);
    OutputBox outputBox1 = new OutputBox(mainWindow1);

    mainWindow1.setVisible(true);

    int weight = 0;
    int bmi = 0;
    double height = 0;

    weight = inputBox1.getInteger("Weight in kilograms (as a whole number e.g. 73");
    height = inputBox1.getDouble("Height in metres (as a real number e.g. 1.82");

    bmi = (int) (weight/(height*height));

    outputBox1.setVisible(true);
    outputBox1.printLine("For a weight of " + weight + " kilograms" );
    outputBox1.printLine("And a height of " + height +" metres" );
    outputBox1.skipLine(1);
    outputBox1.printLine("The BMI is "+ bmi);
    }
    }

    <span style='font-size:14pt;line-height:100%'>BLAH</span>

    <span style='font-size:14pt;line-height:100%'>Wayne Rooney - A thug and a thief</span>

  9. Lounge   -   #39
    NikkiD's Avatar Yen?
    Join Date
    Nov 2002
    Location
    Port Dover, Ontario
    Age
    51
    Posts
    4,253
    I&#39;m a lowly 5&#39;2" (5&#39;3" if I&#39;m really lucky)

    I&#39;m not the shortest one here am I?

  10. Lounge   -   #40
    Poster
    Join Date
    Aug 2003
    Posts
    1,440
    Originally posted by 3rd gen noob@31 October 2003 - 20:27
    n00bla dont make me VB&#39;isualise it.

Page 4 of 12 FirstFirst 1234567 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •