I need help as soon as possible please hs to with arrays.

import java.util.Random;
public class AviarySimulator
    // Instance variables
    private Aviary aviary;
    private int numberOfDays = 0;
    private Random r;
public void simulateDay(int amtFeed)
        //a new Day
        numberOfDays++;
        System.out.println("**************************");
        System.out.println ("Day : " + numberOfDays);
        if(!aviary.isEmpty())
                // Ask the cage to supply its budgie object
                Budgie theBudgie = aviary.getBudgie();
                /* Check there really is a Bird in the cage. null means that there is no
                 * bird object assigned to the myBudgie variable in class cage.
                if(theBudgie != null)
                   // Code moved from below.  PR
                   // Budgie gets older because a day has gone by.                     
                   theBudgie.incAge();
                   // Budgie exercises every day PR
                   theBudgie.exercise(DAILY_EXERCISE);
                    // Feed the budgie
                    // To avoid feeding nothing, check that food is given PR
                    // Also rejects negative feed!
                    if(amtFeed > 0)
                        theBudgie.eat(amtFeed);
                        System.out.println("Just been fed " + amtFeed + " grams of bird seed");
                    // Check if the budgie is still alive
                   if(theBudgie.isDead())
                        System.out.println(theBudgie.getName() + " just died...sob");
                        System.out.println("Here lies " + theBudgie.getName() + " this budgie was much loved by its " +
                                               theBudgie.getNumEggsLaid() + " eggy ofspring");
                        aviary.removeBudgie();
                    // If alive is it overweight?
                    else if(theBudgie.isObese())
                        System.out.println(theBudgie.getName() + " is obese it needs some exercise");
                        theBudgie.exercise(10);
                    else // Budgie is alive and not overweight
                        System.out.println(theBudgie.toString());
                       // The budgie gets a day older
                       // theBudgie.incAge(); // Moved to above PR
                        // The budgie may lay an egg                   
                        if(theBudgie.layEgg(r))
                            System.out.println(theBudgie.getName() + " has just laid an egg ");
                            System.out.println("The egg has been removed from the cage for artificial incubation \n"
                                                  + "and will be adopted out after hatching");
            else  // No budgie in the cage
               System.out.println("The cage is empty");
     * Simulate several days without food.
     * @param numDays, the length of the simulation
    public void simulateDays(int numDays)
        for(int i = 0; i < numDays; i++)
            simulateDay(0); // PR
     * Simulate several days with food.
     * @param numDays, the length of the simulation
     * @param amtFeed, the amount of budgie food in grammes
    public void simulateDays(int numDays, int gmsSeed)
        for(int i = 0; i < numDays; i++)
            simulateDay(gmsSeed);
}This code is supposed to be compatible with this code:
public Budgie(String name, boolean female) // Added gender PR
        // Initialise instance variables
        age = 0;
        colour = "green"; // Default colour
        canTalk = false;  // Cannot talk yet, can only go "cheep"
                          // Quotes removed PR
        budgiesWords = "cheep";
        weight = 25; // In healthy weight range
        bIsFemale = female; // PR
        water = 10;
        // Record supplied name       
        this.name = name;
     * Teaches a budgie to talk
     * @param phrase - what the budgie can say
    public void teachToTalk(String phrase)
        // Ignore an empty string
        if(phrase != "")
            // Budgie can now talk
            canTalk = true;
            budgiesWords = phrase;
     * Increments a budgie's age by a day
    public void incAge()
        age++;
     * The budgie is dead if it is too old or too fat or starved or too thirsty.
    public boolean isDead()
        return (diedOfOldAge() || diedFromOverFeeding() || isStarved() || diedOfThirst());
     * The budgie is too old if it is older than the budgie's maximum age.
    public boolean diedOfOldAge()
        return (age > MAX_AGE);
     * The budgie is too thirsty if it is has less than 10mls of water.
    public boolean diedOfThirst()
        return (water < MIN_DRINK);
     * The budgie is too heavy to live if it is more than double a
     * budgie's sensible weight limit.
    public boolean diedFromOverFeeding()
        return (weight >= TOO_FAT*2);
     * The budgie is obese if it is more than a budgie's sensible
     *  weight limit.
    public boolean isObese()
        return (weight >= TOO_FAT);
     * The budgie is starved if it is less than a budgie's sensible
     *  minimum weight.
    public boolean isStarved()
        return (weight <= TOO_THIN);
     *  The budgie has been fed.  It will put on weight.
     *  @param gmsOfBirdFeed, the amount of food eaten in grammes
    public void eat(int gmsOfBirdFeed)
        // Convert to gms fat
        double fat = gmsOfBirdFeed/10.0;
        weight = weight + fat;
     *  The budgie has drunk.
     *  @param mlsofwater, the amount of water drunk in mls
    public void drink(int mlsOfWater)
        water = mlsOfWater;
     *  The budgie has done some exercise.  It will lose weight.
     *  @param minutesOfExercise, the time of the exercise
    public void exercise(int minutesOfExercise)
        double weightLoss = minutesOfExercise * 0.1; // For each minute lose 0.1 gms fat      
        weight -= weightLoss;
        System.out.println("Budgie exercising for " + minutesOfExercise + " minutes, has lost " + weightLoss + " grammes in weight." );
    *  The budgie may lay an egg.  Only adults can lay eggs.
    *  @param rnd, a random object
    public boolean layEgg(Random rnd)
       boolean bLaying = false; // default
       // Only hens can lay eggs // PR
       if(bIsFemale)
           int probability = rnd.nextInt(10);
           // Random chance that it will lay
           // Added that cannot lay if last egg laid yesterday PR
           if((probability >= 5) && (age > ADULT_AGE ) && (age - lastEgg != 1))
                // Can only lay eggs if a grown-up
                numEggsLaid++;
                bLaying = true;
                lastEgg = age; // Laid an egg today PR
       return bLaying;      
     *  The budgie talks - display its words.
    public void talk()
        System.out.println(budgiesWords);
     *  Change the colour of the budgie.
     *  @param newColour, new value of budgie's colour
    public void setColor(String newColour)
        colour = newColour;
     *  Return the colour of the budgie.
     *  @return budgie's colour
    public String getColour()
        return colour;
     *  Output the budgie's details.
     *  @return A string containing all details of the budgie
    public String toString()
        String msg = "Budgie " + name + " ";
        if(canTalk)
            msg += "can talk it says ";
        else
            msg += "can not talk it just makes the sound ";
        msg += "'" + budgiesWords + "'";
        msg += "\n";
        msg += " Its colour is : " + colour;
        msg += "\n Its age is : " + age + " days.";
       return msg;
     *  Return the number of eggs the budgie has laid.
     *  @return eggs laid by budgie
    public int getNumEggsLaid()
        return numEggsLaid;
     *  Return the budgie's age.
     *  @return age of budgie
    public int getAge()
        return age;
     *  Return the budgie's name.
     *  @return name of budgie
    public String getName()
        return name;
     *  Return the budgie's gender.
     *  @return true if budgie is female
    public boolean isFemale()
        return bIsFemale;
But everytime I try to compile it highlight this bit in the simulator:Budgie theBudgie = aviary.getBudgie();With an error message:
getBudgie in Aviary cannot be applied to ()
Im sorry for the long post please help would be most apreciated.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

NO prob man thank for such a quick response
import java.util.ArrayList;
* A Aviary for budgies to live in.
* A maximum of one budgie can live in aviary
* @author (Jacqui Whalley)
*  Modified by Phil Robbins
* @version (v0.2)
*  9-3-2006 Fixed bugs from stage 1.
*           Added stage 2 code
public class Aviary
    // Instance variables
    private ArrayList budgies; // The budgies that live in the aviary
   // private boolean empty;   // Removed PR
     * Constructor for objects of class aviary.
    public Aviary()
        //empty = true; // removed PR
        budgies = new ArrayList(); // Semi colon added PR 
     *  Add a budgie to the aviary.
     *  @param bird, the budgie to add to the aviary.
    public void addBudgie(Budgie bird)
        // Can only have one budgie
        budgies.add(bird);
     * Remove the budgie - eg if it has died.
    public void removeBudgie(int index)
        if (index <= budgies.size() && index > 0)
            // Can only remove if there is a budgie there
            budgies.remove(index);
        else
            System.out.println("Error");
     * Returns the Aviary's budgie (which my be null).
     * @return The budgie that lives in the Aviary
    public void getBudgie(int index)
        if (index <= budgies.size() && index > 0)
            // Can only remove if there is a budgie there
            System.out.println(budgies.get(index));
        else
            System.out.println("Error");
     * Returns true if the cage is Aviary.
     * @return the emptiness of the Aviary
    public boolean isEmpty()
        //return empty; // Removed PR
        return budgies.size() == 0;
     * List budgies and there details
    public void listBudgieDetails()
        for(int i = 0;i < budgies.size();i++)
            System.out.println(budgies.get(i));
}

Similar Messages

  • HT5622 Hey Hi ! I brought iPhone 5 in Kuwait and now I'm in India now.I noticed my FaceTime option is missing. No option no settings and no data related to FaceTime . I'm very much worried about it. Need help as soon as possible.

    Hey Hi ! I brought iPhone 5 in Kuwait and now I'm in India now.I noticed my FaceTime option is missing. No option no settings and no data related to FaceTime . I'm very much worried about it. Need help as soon as possible.

    Someone could have stolen it in Kuwait...happens all the time .
    Seriously...FaceTime is banned there...there is no way to add it back to your phone...if you wanted FaceTime, you should not have purchased your phone there.
    BTW: You don't have any warranty or support for this phone in India.
    You live & you learn

  • BW Archiving- Need help as soon as possible

    Hi,
    Can Archiving on ODS be implemented using an ABAP program? If the data is loaded on to flat files and if it is required to reload it back to ODS is ABAP a better choice. If any one has worked on this issue earlier please provide me the information as soon as possible. Any input on this issue will be of great help.
    Thanks,
    SP

    Hi sudheer,
    I have gone through few of your requests to SDN network . and found out thta you have worked on  "sap bw archiving ". So, I need a small help from you . need to clear out some of my doubts with sap bw archiving issues . So could you please send me your e-mail id . so that i can be in contact with you . As i am new to SDN .
    Thanking you in advance . I would appreciate your help .
    or Anyone who have experience with "SAP  BW archiving " could you please send me your mail id . Thanks for your help .
    Cheers,
    shailu.

  • I need help as soon as possible

    Can anyone please help me and explain how can I do this white effect on dark background? Can I do this in Illustrator or I must use Photoshop?
    Thank you.

    1.     Use a black rectangle to make your black background.
    2.     Create your mountain shape using the pen tool.
    3.     Make a ellipse in the shape of your white glow. Set its stacking order to be behind your mountain, but in front of your background (or use different layers).
    4     Set the fill of your ellipse to be a radial gradient from white to black.
    5.    Select your ellipse and go to Effect > Texture > Grain. Play with the sliders until you achieve the desired effect. You may need to bounce back and forth between your gradient settings and the texture settings to get it right.
    Tip* You can access the settings of the texture effect again after you apply them by going to your appearance palette and selecting it.

  • Wanted Main window only on Task bar ...Need help as soon as possible

    Hello All,
    We are creating one application.
    We have main window(JFrame) with four subwindows.
    By clicking buttons on main window the subwindows will be opened.
    By using Iconified method we are able to minimise all the subwindows when main window is minimised.
    But on the task bar all the windows are showed.
    But we want to show main window only on the task bar while minimising
    That means all the sub windows should come under main window.
    Will Deiconified satifies this condition while maximisation.
    Need some ones help.
    Thank You All.
    Rajiv.V

    Use show() and hide() on your subwindows instead of iconifying and deiconifying them. Minimizing a window should produce exactly the behavior you're seeing. Using the right tool will get you the right result.

  • I need help as soon as possible. statement wont execute the if statement

    I can not seen to make my "if statement work" can someone guide me in the right direction.
    import java.util.Scanner;
    import java.lang.Math;
    public class bm
    * main
    public static void main(String[] args) throws Exception
    Scanner scanner1,scanner2,scanner3;
    String sGradeType,sGrade="",sUGrade;
    char cGrade;
    double dGrade;
    long drGrade;
    int iGrade=0;
    System.out.println("Type of Entry (Chars(C)/Digits(D)");
    scanner1 = new Scanner(System.in);
    scanner2 = new Scanner(System.in);
    sGradeType = scanner1.next();
    sGradeType = "D";
    if (sGradeType == "D")
    System.out.println("Enter Grade number");
    scanner2 = new Scanner(System.in);
    dGrade = scanner2.nextDouble();
    drGrade = Math.round(dGrade);
    iGrade = (int)dGrade;
    switch (iGrade)
    case 75 :
    sGrade = "A" ;
    break ;
    case 60 :
    sGrade = "B";
    break ;
    case 50 :
    sGrade = "C";
    break ;
    case 40 :
    sGrade = "D";
    break ;
    default :
    System.out.print("illegal Grade !") ;
    System.out.printf("Grade Value, %8.3f. Grade %s", dGrade, sGrade);
    } else if (sGradeType == "C")
    System.out.println("Enter Grade Letter");
    scanner3 = new Scanner(System.in);
    sGrade = scanner3.next();
    sUGrade = sGrade.toUpperCase();
    cGrade = sUGrade.charAt(0);
    switch (cGrade)
    case 'A' :
    iGrade = 75 ;
    break ;
    case 'B' :
    iGrade = 60;
    break ;
    case 'C' :
    iGrade = 50;
    break ;
    case 'D' :
    iGrade = 40;
    break ;
    default :
    System.out.print("illegal Grade !") ;
    System.out.printf("Grade Value, %d, Grade %s", iGrade, sGrade);
    } // end of method main
    }

    Oops! Hit the wrong button.
    OK.
    First up - welcome to the Sun forums.
    A few points.
    >
    I can not seen to make my "if statement work" can someone guide me in the right direction.>1) Maybe the if statement is just a little tired. Give it a good night's rest and it will probably do twice the work tomorrow.
    Or to put that a less funny way..
    Please describe what it was supposed to do, why you thought it would do that, and what it actually did.
    2) Which 'if' statement? There are two if statements in that code.
    3) String comparison should not be done using '==', instead use string1.equals(string2)
    4) Please use the code formatting tags when posting code, and indent code using the common conventions.
    This is what I mean..
    import java.util.Scanner;
    import java.lang.Math;
    public class bm
    * main
         public static void main(String[] args) throws Exception
              Scanner scanner1,scanner2,scanner3;
              String sGradeType,sGrade="",sUGrade;
              char cGrade;
              double dGrade;
              long drGrade;
              int iGrade=0;
              System.out.println("Type of Entry (Chars(C)/Digits(D)");
              scanner1 = new Scanner(System.in);
              scanner2 = new Scanner(System.in);
              sGradeType = scanner1.next();
              sGradeType = "D";
              if (sGradeType == "D")
                   System.out.println("Enter Grade number");
                   scanner2 = new Scanner(System.in);
                   dGrade = scanner2.nextDouble();
                   drGrade = Math.round(dGrade);
                   iGrade = (int)dGrade;
                   switch (iGrade)
                        case 75 :
                             sGrade = "A" ;
                             break ;
                        case 60 :
                             sGrade = "B";
                             break ;
                        case 50 :
                             sGrade = "C";
                             break ;
                        case 40 :
                             sGrade = "D";
                             break ;
                        default :
                             System.out.print("illegal Grade !") ;
                   System.out.printf("Grade Value, %8.3f. Grade %s", dGrade, sGrade);
              } else if (sGradeType == "C")
                   System.out.println("Enter Grade Letter");
                   scanner3 = new Scanner(System.in);
                   sGrade = scanner3.next();
                   sUGrade = sGrade.toUpperCase();
                   cGrade = sUGrade.charAt(0);
                   switch (cGrade)
                        case 'A' :
                             iGrade = 75 ;
                             break ;
                        case 'B' :
                             iGrade = 60;
                             break ;
                        case 'C' :
                             iGrade = 50;
                             break ;
                        case 'D' :
                             iGrade = 40;
                             break ;
                        default :
                             System.out.print("illegal Grade !") ;
                   System.out.printf("Grade Value, %d, Grade %s", iGrade, sGrade);
         } // end of method main
    } Edited by: AndrewThompson64 on Apr 12, 2009 10:47 PM

  • Help as soon as possible, PLEASE!!!!!

    After installing the last Firmware uptdate (for start up and wake-up from sleeping), I followed the instructions which were:
    - Click the "shut down" button (in the dialogue window)
    - Push and hold the On and Off button of the computer until it flashes.
    After that, the screen shut off and the computer will not start at all again.
    When I push the On button, I only hear a repeated noise comming from the driver.

    As neutron said, you probably need to make the firmware restore disc so you can use it to restore your firmware to what it was before you attempted the update. Something went wrong for you during the update process. You'll need to use another computer with access to the internet to find and download and burn the disc.
    Good luck,
    Steve M.

  • NEED HELP AS SOON AS POSSIBLE!

    my computer crashed just recently and i got my account back for itunes, but my library is empty. so i plugged my ipod in to put my songs from my ipod to my library, but it wont work. i went to my account page and it says "one machine is authorized to play music purchased with this account". how do i authorize another computer to play music?

    With iTunes open, look at the very top of the screen, just a bit to the left of center.

  • IPHONE HELP AS SOON AS POSSIBLE PLEASE

    My iPhone for some reason just turned off when i was listening to music from a link i put in my home page,and now the screen is all black.what should i do ?

    Try resetting it:
    Press the Sleep/Wake button & Home button at the same time, keep pressing until you see the Apple logo, then release.

  • Rendering a composition with bicubic interpolation (I NEED HELP AS SOON AS POSSIBLE!!!!!) thanks!

    So I have this composition that I want to render. Some of the layers in that composition has bicubic interpolation enabled. When I rendered that composition, the layers with bicubic interpolation enabled went back to default, seen in the image file attached.
    For more information, I'm importing this into a premiere which I will then render again for YouTube. Would this happen again when I render from adobe premiere?

    The layers highlighted are the ones with bicubic interpolation enabled. It looks fine in the preview window and in premiere, since this whole after effects comp is a dynamicly linked comp between AE and Premiere. The problem is, when I render this comp in After Effects, those highlighted layers become blurry. Also, if you're wondering why I'm rendering this comp even though it's dynamically linked with premiere, it's because I do it to reduce time in rendering when I color correct/grade in premiere.

  • .save problem, need help as soon as possible !

    function dataGrabbed(event:Event):void
    var dataText = input_txt.text
    saver.addEventListener(Event.COMPLETE, dataSaved);
    saver.save("saver.php","data.xml",dataText);
    the above code is a code I am trying to use, but dataText as you can se is just a var, how do I tell ActionScript3 to put dataText into dataXML.options.info.uid ?
    saver.php content:
    <?php
    $content = $_POST['content'];
    $file = $_POST['fileName'];
    $content = stripslashes($content);
    $writeFile = fopen($file, "w");
    if(fwrite($writeFile, $content))
      echo $content;
    else
      echo "Error writing to file";
    fclose($writeFile);
    ?>

    use:
    var urlR:URLRequest = new URLRequest("saver.php");
    var ldr:URLLoader= new URLLoader();
    ldr.dataFormat = URLLoaderDataFormat.VARIABLES;
    var urlV:URLVariables = new URLVariables();
    urlV.content = input_txt.text;
    urlV.fileName = "data.xml";
    urlR.data = urlV;
    urlR.method = URLRequestMethod.POST;
    ldr.addEventListener(Event.COMPLETE, completeF);
    ldr.addEventListener(IOErrorEvent.IO_ERROR, IOErrorF);
    ldr.load(urlR);
    function completeF(e:Event):void {
    function IOErrorF(e:IOErrorEvent):void {

  • How to download a .txt file correctly. Please help as soon as possible!

    Hi everybody,
    I need to implement download that prompts the user to save a txt file.
    If I use "attachment" in response.setHeader, my IE 5.50 crashes after downloading 4 to 6 files consecutively.
    I tried to change the response.setHeader to "inline" and the response.setContentType to "application/zip" or "application/UNKNOWN", and although it works in IE 5.50, my IE 5.00 never prompts asking to save the file, it always opend the file into the browser window, and I need a prompt.
    I saw many questions related with this problem in this forum, but none that answered accurately to this problem.
    Please help as soon as possible, I dont have much time to do this.
    Thank you very much.

    Thank you gypsy617 for your reply, but it still does not work!
    I made all the changes to
    1)res.setContentType("application/x-download");
    2)res.setHeader("Content-Disposition", "attachment; filename=" + filename);
    3)OutputStream out = res.getOutputStream();
    4)returnFile(filename, out);
    5) and i sent the file content as bytes
    But the real problem is regarding the "attachment" option !!!
    In my application, in the same page, there are a lot of links that users can download, each one a link that calls a action. It works well for the first downloaded file, for the second, ..., and then, when we try to download the file number 4 or 5, IE says that there is a problem and it must close (and it asks us to send a report - something like "Exception Information Code:0xc0000005 Flags:0x00000000 Record:0x0000000000000000 Address:0x0000000077a7710a").
    I know that the problem is the "attachment" because if I choose "inline", IE never crashes. But i really need a Save As dialog, the txt files cannot be openned into the browser window, so i cant use inline.
    Any idea?
    Thank you.

  • My phone has been changed under warranty by the apple store in germany. ı need a change document to register the phone in my country again. ımeı numbers of old and new must be in the document.you can send an mail in pdf format as soon as possible please.

    my phone has been changed under warranty by the apple store in germany.
    ı need a change document to register the phone in my country again.
    ımeı numbers of old and new must be in the document.you can send an mail in pdf format
    as soon as possible please.
    your's respectfully.
    new phone serial no:DQ******TC0
    old phone serial no:DN*******T9Y
    Product:
    iPhone 4S
    Serial Number:
    DN*******T9Y
    Service Requested:
    December 3, 2012
    Status:
    Repair Complete
    <Edited by Host>

    No we cannot send it to you because we are users just like you and Apple does not monitor these forums.
    But you can find the IMEI numbers yourself. Read the ENTIRE article:
    http://support.apple.com/kb/HT4061

  • I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

    I have installed Grease Monkey plugin using unsafeWindow.Engine.init() function. It says unsafeWindow.Engine undefined. Please help as soon as possible.

  • Hi Rstor work for the iPhone 5 remains 4 hours Standby Please please help as soon as possible and thank you

    Hi Rstor work for the iPhone 5 remains 4 hours Standby Please please help as soon as possible and thank you

    These are user-to-user forums, you are not talking to Apple here - I've asked the hosts to remove your phone number from your post.
    You can contact iTunes support via email via this page and ask them why the message is appearing : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

Maybe you are looking for

  • Windows XP 64 bit pro clean install with RAID

    Can anyone help out???  I recently purchased a Lenovo Thinkpad W700 with the raid system (raid1) it had Vista Business pre installed but I wasn't impressed so I've cleared VB out and tried to install XP 64 pro  I have followed the guide I found on th

  • IMPORT_CONTAINER_MISSING exception

    HI, Is anyone familiar with the exception IMPORT_CONTAINER_MISSING ? The exception has occurred during a data import from the memory id 'LTAP'.

  • ITUNES STORES 支援

    當我想訂購BOOKU 登入時, 他提示要找ITUNES STORE支援以完成此交易

  • Moving pictures down while typing

    Hello there, I usually  add lots of pictures to my works on pages but when I need to make some changes to my text on the documents as I type the new information all the pictures staying in place and the text just keep going down leaving the pictures

  • Iphone carriers outside of the us

    I am moving to Mexico and I was wondering if there was a specific carrier I needed to sign up with.