October 18, 2024, 08:58:06 PM

1,531,335 Posts in 46,732 Topics by 1,523 Members
› View the most recent posts on the forum.


:'(

Started by Daddy, September 12, 2007, 01:06:52 PM

previous topic - next topic

0 Members and 4 Guests are viewing this topic.

Go Down

Daddy

Quote from: Lawlz on September 12, 2007, 02:19:04 PM
um wut

install developer tools
which folder on disc 1 is that

ncba93ivyase


Quote from: ncba93ivyase on June 18, 2014, 07:58:34 PMthis isa great post i will use it in my sig

Daddy

Quote from: Lawlz on September 12, 2007, 02:43:19 PM
search
Is it in the Xcode Tools or the Bundled software?

ncba93ivyase

Quote from: JMV290 on September 12, 2007, 02:53:51 PM
Is it in the Xcode Tools or the Bundled software?
xcode

My G5 and C2D had it labeled as Developer Tools. caterpie;

Quote from: ncba93ivyase on June 18, 2014, 07:58:34 PMthis isa great post i will use it in my sig

Daddy

Quote from: Lawlz on September 12, 2007, 02:59:29 PM
xcode

My G5 and C2D had it labeled as Developer Tools. caterpie;
k i clicked xcodetools.mpkg and installed a 2.9GB file.


It still doesn't work.

ncba93ivyase

Quote from: JMV290 on September 12, 2007, 03:34:12 PM
k i clicked xcodetools.mpkg and installed a 2.9GB file.


It still doesn't work.
LEARN TO CODE PROPERLY

Quote from: ncba93ivyase on June 18, 2014, 07:58:34 PMthis isa great post i will use it in my sig

Daddy

Quote from: Lawlz on September 12, 2007, 03:34:52 PM
LEARN TO CODE PROPERLY
it's not the code.  It works fine at school.


ncba93ivyase

Quote from: JMV290 on September 12, 2007, 03:35:27 PM
it's not the code.  It works fine at school.


lern 2 cumpiel

Quote from: ncba93ivyase on June 18, 2014, 07:58:34 PMthis isa great post i will use it in my sig

Daddy

Quote from: Lawlz on September 12, 2007, 03:37:17 PM
lern 2 cumpiel
I can't build the code, so I can't compile it.



Daddy

o i give up. that one sux anyway. I'll just work on my cool app.


guff

Quote from: JMV290 on September 12, 2007, 03:50:45 PM
I can't build the code, so I can't compile it.
uh building is compiling psyduck;

Daddy

Quote from: Commodore Guff on September 12, 2007, 04:02:51 PM
uh building is compiling psyduck;
oops.

lol well I'm not sure what the error is, so I started from scratch.

I can't view the code of that one to find the errors.

ncba93ivyase

Quote from: JMV290 on September 12, 2007, 04:03:52 PM
oops.

lol well I'm not sure what the error is, so I started from scratch.

I can't view the code of that one to find the errors.
Xcode should have little symbols that display wherever you messed up. psyduck;

also i think jmv should quit programming since its way over his head

Quote from: ncba93ivyase on June 18, 2014, 07:58:34 PMthis isa great post i will use it in my sig

Daddy

Quote from: Lawlz on September 12, 2007, 04:07:49 PM
Xcode should have little symbols that display wherever you messed up. psyduck;

also i think jmv should quit programming since its way over his head
It was just that one file.  psyduck;


Code Select
// Addition program that displays the sum of two numbers.
import java.util.Scanner; // program uses class Scanner

public class calculator
{
   // main method begins execution of Java application
   public static void main( String args[] )
   {
      // create Scanner to obtain input from command window
      Scanner input = new Scanner( System.in );

      int number1; // first number to add
      int number2; // second number to add
      int sum; // sum of number1 and number2
      int difference; // diference of number1 and number2
      int product; // product of number1 and number2
      int quotient; //quotient of number1 and number2
      int remainder; // remainder after dividing number1 and number2

      System.out.print( "Enter first integer: " ); // prompt
      number1 = input.nextInt(); // read first number from user

      System.out.print( "Enter second integer: " ); // prompt
      number2 = input.nextInt(); // read second number from user

      sum = number1 + number2; // add numbers
      difference = number1 - number2; // subtract numbers
      product = number1 * number2; // multiply numbers
      quotient = number1 / number2; //divide numbers
      remainder = number1 % number2; //find remainder

      System.out.printf( "Sum is %d\n", sum ); // display sum
      System.out.printf( "Difference is %d\n", difference ); //display difference
      System.out.printf( "Product is %d\n", product ); // display product
      System.out.printf( "Quotient is %d\n", quotient ); // display quotient
      System.out.printf( "The Remainder is %d\n", remainder ); // display remainder

   } // end method main

} // end class Addition

/**************************************************************************
*Oh cool I made a program                                                                                                     *
*************************************************************************/

guff

Quote from: Lawlz on September 12, 2007, 04:07:49 PM
also i think jmv should quit programming since its way over his head
what programming have you done

Go Up