Simple problem but help needed

how do I accept a character y or n from the user? otherthan readLine()used for String console input. which function should I use to accept y or n and proceed based on y or n , same is the case with boolean. If I would want to accept a boolean value from the console
from the user and would want to proceed according to what boolean value(true or false) has been entered by the user
import java.io.*;
public class acceptUsersChoice{
public static void main(String args[])throws IOException{
InputStreamReader hi=new InputStreamReader(System.in);
BufferedReader hey=new BufferedReader(hi);
//accepting user's choice and acting accordingly
System.out.println("Enter Your choice 'y' or 'n' ");
char s=
/* here how do I accept a character y or n ? which function should I use to accept y or n and proceed based on y or n , same is the case with boolean. If I would want to accept a boolean value
from the user and would want to proceed according to what boolean(true or false) has been entered by the user, how do I do it?*/
System.out.println("This is it"+s);
}}

Crossposted. Here's one of them:
http://forum.java.sun.com/thread.jspa?threadID=597733

Similar Messages

  • Please a simple problem but I don't know how to solve it. After installing 16 gb of ram all is good but when I turn on the computer it is a window signaling that all is correct. How is possible to delete once and for all that window? Thank you

    Please a simple problem but I don't know how to solve it. After installing 16 gb of ram all is good but when I turn on the computer it is a window signaling that all is correct. How is possible to delete once and for all that window? Thank you

    Well then maybe you could take a screenshot because the appearance of such a window is news to me.
    Also post your OS X version and what model Mac you have. The more detail, the better. Thanks.
    To take a screenshot hold ⌘ Shift 4 to create a selection crosshair. Click and hold while you drag the crosshair over the area you wish to capture and then release the mouse or trackpad. You will hear a "camera shutter" sound. This will deposit a screenshot on your Desktop.
    If you can't find it on your Desktop look in your Documents or Downloads folder.
    When you post your response, click the "camera" icon above the text field:
    This will display a dialog box which enables you to choose the screenshot file (remember it's on your Desktop) and click the Insert Image button.
    ⌘ Shift 4 and then pressing the space bar captures the frontmost window.
    ⌘ Shift 3 captures the entire screen.
    Drag the screenshot to the Trash after you post your reply.

  • Automation Problem - Desperate Help Needed

    Hi
    Was wondering if anyone can help or has had the sameproblem?
    I have nearly finished a remix project in Logic and I amcoming to the final stages of automating effects etc.
    All of a sudden, my automation is not recording on certain tracks.
    I am simply trying to automate the cut-off on the Filterplug-in, but have subsequently realised that it is also happening with volume and any other type of automation.
    I thought it might be something to do with the massive synth– but the same is happening with the EXS and ES2 etc.
    I have done a lot of testing and opened up a new project andcopied over the settings and midi-regions and automation records absolutely fine!
    I even tried to get round it by sending the output to a bus and effecting the bus then trying to automate the bus once adding to the arrange! No Joy!  Still failed?!
    It seems that it is a bug within my project?!
    A black line appears and even if I try and manually drawautomation the line just disappears.
    It is definitely not what I am doing, as I have replicated the process in a fresh project and it works fine.
    Are you only allowed so many channels of automation?
    Funnily, during my testing when I try and delete the trackto start a fresh – it says – 'Do you want to delete automation'! but there isclearly none on display and I am not hearing any!
    It feels like a bug – but wondered if anyone else had any issues?
    It is only affecting certain tracks, but I cannot see a correlation between them?!
    I am about to start replicating everything in a new project! Huge job – but I need to automate forthe final mix and its due by Friday – I am really frustrated by this!
    Can Apple help me?
    Thanks in advance
    Steve

    Steve,
    I haven't seen this behavior before, but it sounds like a corrupted file. It doesn't happen often, but it does, and can happen.
    If you are not having similar problems in a new template, than moving everything over to a new session would be advised, at this point.
    Logic 9's new track import feature will make this A LOT easier than it ever was.
    Read up on how this is done, but you should be able to copy EVERYTHING over to a new session in one swoop

  • IPhone 4 - Power problem! help needed...

    My iphone 4 has a power issue.
    It was originally dropped in water! was left off for 2 weeks in very warm conditions, was dried out with both the Rice method! and the silica gel method.
    The problem is this, the phone will power up (have noticed i have to hold the power button down alot longer than i use to) when the screen comes on, i put it into standby (black screen by pressing power button quickly) and the phone will stay powered up all day long as normal. BUT when i want to USE the phone and the screen is lit up it will only be powered up for exactly 4 mins - then the screen dies and the iphone reboots itself. It will do this all the time unless i leave it in standby mode.
    I have tried numerous restores both in restore and DFU mode, with 4.1 and 4.2.1 Firmwares. Im very aware and competent when it comes to iphone but I dont have a clue whats causing this problem! Maybe a hardware problem, but what can be wrong that will only allow me to use the iphone for 4 mins! ???

    Maybe a hardware problem?
    As you should know, water and electronics don't mix. If there was hardware damage as a result of your iPhone being dropped in water and apparently there was, it doesn't matter how long your iPhone was dried out without powering it on and using it and if it was completely dry when powering it back on.
    Don't know what the hardware damage and problem is - impossible to know and determine this for certain without running a diagnostic check on the iPhone, which can be done at an Apple store.

  • I have a working problem, but still need some help

    import javax.swing.JOptionPane;
    class testing
      public static void main(String args[])
        int firstNum = 0, secondNum = 0;
        int evensTotal = 0, oddsTotal = 0;
        while(firstNum >= secondNum)
          int num = Integer.parseInt(JOptionPane.showInputDialog("Enter a number"));
          if(firstNum == 0) firstNum = num;
          else secondNum = num;
        for(int i = firstNum; i <= secondNum; i++)
          if(i % 2 == 0) evensTotal += i;
          else
            System.out.println("odd number = " + i);
        System.out.println("Even numbers total = " + evensTotal);
        for(int i=firstNum; i<= secondNum; i++)
      if( i % 2 == 0 ) evensTotal=i;
         System.out.println(i+" squared is " + (i*i) );
          for(int i = firstNum; i <= 10; i++)
              if(i % 2 == 0) evensTotal += i;
          else
                  oddsTotal += i*i;
        System.out.println("Odd numbers(squared) total = " + oddsTotal);
        System.exit(0);
    }I have everything I need, but I don't want it to display the even numbers squared. I want it to display the odd numbers squared. And also at the end I need to Output all of the uppercase letters. Any ideas of what that means or how to go about it??
    By the way. The program outputs the following when I use firstNum=1 and secondNum=13:
    odd number = 1
    odd number = 3
    odd number = 5
    odd number = 7
    odd number = 9
    odd number = 11
    odd number = 13
    Even numbers total = 42
    2 squared is 4
    4 squared is 16
    6 squared is 36
    8 squared is 64
    10 squared is 100
    Odd numbers(squared) total = 165
    Edited by: mk9000 on Oct 29, 2008 9:09 PM

    import javax.swing.JOptionPane;
    class testing
      public static void main(String args[])
        int firstNum = 0, secondNum = 0;
        int evensTotal = 0, oddsTotal = 0;
        while(firstNum >= secondNum)
          int num = Integer.parseInt(JOptionPane.showInputDialog("Enter a number"));
          if(firstNum == 0) firstNum = num;
          else secondNum = num;
        for(int i = firstNum; i <= secondNum; i++)
          if(i % 2 == 0) evensTotal += i;
          else
            System.out.println("odd number = " + i);
        System.out.println("Even numbers total = " + evensTotal);
        for(int i=firstNum; i<= 10; i++)
      if( i % 2 == 0 ) evensTotal+=i;
      else
         System.out.println(i+" squared is " + (i*i) );
          for(int i = firstNum; i <= 10; i++)
              if(i % 2 == 0) evensTotal += i;
          else
                  oddsTotal += i*i;
        System.out.println("Odd numbers(squared) total = " + oddsTotal);
        System.exit(0);
    }Ok. I figured out how to display the odd numbers squared. I was forgetting to place the else after the if statement. But I still don't understand what my teacher could be talking about when she says "the last step is to output all the uppercase letters"
    Any help here? It makes no sense to me. It's all numbers. How could I output any uppercase letters?
    Edited by: mk9000 on Oct 30, 2008 5:53 AM

  • SIMPLE MASKING PROBLEM. HELP NEEDED

    doing some simple masking of text in a scene. got my 0%
    brightness set on one layer and on another layer i have the same
    word with -80% brightness set. then i have a spotlight effect on
    the third layer. when i check if it works within the flash file, it
    works. when i test my movie it doesn't work!!!!!
    i cannot see what i am doing wrong!
    if somebody could answer as soon as possible as i have to
    hand this assignment in tomorrow!!!! THANK YOU!

    Breaking apart - will work - will also not permit you to have
    the ability to edit the text as a font
    - so if you decide breaking apart is the way to go (always
    better to shange text to Static or embed
    font outlines), make sure you copy/paste the textfield to a
    new layer off the stage or set it to a
    guide layer so it is not included in exported SWF in canse
    you ever want to edit it later.
    ~~~~~~~~~~~~~~~~
    --> Adobe Certified Expert
    --> www.mudbubble.com
    --> www.keyframer.com
    ~~~~~~~~~~~~~~~~
    KrahnikBoi wrote:
    > It will work if you break it apart. It should also work
    if you embed the
    > font.
    >
    > --KB
    > "fudge_ona_stick" <[email protected]> wrote in
    message
    > news:ejhsb0$qbc$[email protected]..
    >
    >>yep, i've heard that too...
    >>
    >>static text will mask but dynamic and input text have
    serious issues...
    >>you could always "break apart" the text and you won't
    have masking issues.
    >
    >
    >

  • Recall for my problem urgent help needed

    Hi friends,
    I am a new DB administrator and I have faced a problem in our database.
    Here i will explain our architecture and i will state the problem.
    In my org. we have database server responsible for keeping the DB itself. Another server which is the main server is responible to control the access to the network and making and storing DB backups using a third party software (Net Backup Software). The backups are kept in tapes accessed by main server using tapes robot.
    Our backup policies is that the software makes full backup every week and a incremental dialy backups of the DB. The retention of each backup is two weeks. All servers have been shutted down during vacations.
    The problem is that when we came from two weeks vacation, users found that the DB is in old state and we lost the most recent valid state. I tried all my best since month ago to do recovery. I decided the point of time to restore and I also use the SCNs but I could'nt reach a solution. I used Net backup, Rman, EM but without a result.
    When i check NetBackup console I find a backup available since 28 of July 2010. Actually the changes are made after this date and now the DB state is older thatn this date. the question is: WHER HAVE THE CONSEQUENT CHANGES GONE? around one mounth of work has been lost..
    the oracle shows me the following message:
    The RMAN script for the recovey is:
    Run {
    allocate channel t1 type 'sbt_tape';
    set until time to_date('28-Jul-2010 00:00:00', 'DD-MON-YYYY HH24:MI:SS');;
    restore database;
    recover database;
    release channel t1;
    RMAN-00571: ========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ============
    RMAN-00571: ========================================================
    RMAN-03002: failure of restore command at 21/09/2010 11:01:26
    RMAN-06100: no channel to restore a backup or copy of datafile 20
    RMAN-06100: no channel to restore a backup or copy of datafile 19
    RMAN-06100: no channel to restore a backup or copy of datafile 18
    RMAN-06100: no channel to restore a backup or copy of datafile 17
    RMAN-06100: no channel to restore a backup or copy of datafile 16
    RMAN-06100: no channel to restore a backup or copy of datafile 15
    RMAN-06100: no channel to restore a backup or copy of datafile 14
    RMAN-06100: no channel to restore a backup or copy of datafile 13
    RMAN-06100: no channel to restore a backup or copy of datafile 12
    RMAN-06100: no channel to restore a backup or copy of datafile 11
    RMAN-06100: no channel to restore a backup or copy of datafile 10
    RMAN-06100: no channel to restore a backup or copy of datafile 8
    RMAN-06100: no channel to restore a backup or copy of datafile 6
    RMAN-06100: no channel to restore a backup or copy of datafile 5
    RMAN-06100: no channel to restore a backup or copy of datafile 4
    RMAN-06100: no channel to restore a backup or copy of datafile 3
    RMAN-06100: no channel to restore a backup or copy of datafile 2
    RMAN-06100: no channel to restore a backup or copy of datafile 1
    the backup script is as follows:
    DB server = jewcsrv3.
    Main server = jewcsrv1.
    RUN {
    echo ALLOCATE CHANNEL ch00
    echo TYPE 'SBT_TAPE';
    echo SEND 'NB_ORA_CLIENT=jewcsrv3,NB_ORA_SERV=jewcsrv1';
    echo BACKUP
    echo %BACKUP_TYPE%
    echo FORMAT 'bk_u%%u_s%%s_p%%p_t%%t'
    echo DATABASE;
    echo RELEASE CHANNEL ch00;
    echo # Backup Archived Logs
    echo # For an offline backup, remove the following sql statement
    echo sql 'alter system archive log current';
    echo ALLOCATE CHANNEL ch00
    echo TYPE 'SBT_TAPE';
    echo SEND 'NB_ORA_CLIENT=jewcsrv3,NB_ORA_SERV=jewcsrv1';
    echo BACKUP
    echo FORMAT 'arch-s%%s-p%%p-t%%t'
    echo ARCHIVELOG
    echo ALL
    echo DELETE INPUT;
    echo RELEASE CHANNEL ch00;
    echo # Control file backup
    echo ALLOCATE CHANNEL ch00
    echo TYPE 'SBT_TAPE';
    echo SEND 'NB_ORA_CLIENT=jewcsrv3,NB_ORA_SERV=jewcsrv1';
    echo BACKUP
    echo FORMAT 'bk_u%%u_s%%s_p%%p_t%%t'
    echo CURRENT CONTROLFILE;
    echo RELEASE CHANNEL ch00;
    echo }
    Could any one please help me to solve this problem. If there is no solution what could he suggest to do now to have a valid state and for future to avoid this problem.
    Thanks alot..
    PLEASE REPLY AS SOON AS POSSIBLE
    Edited by: 799539 on Oct 4, 2010 12:35 AM

    Your BACKUP script does set the NetBackup parameters for the Tape Channels.
    However, your RESTORE script does not specify the NetBackup parameters -- so Oracle doesn't know which channel to use for the Restore.
    You need to add the NetBackup parameters in the RESTORE.
    However, this is suprising :
    The problem is that when we came from two weeks vacation, users found that the DB is in old state and we lost the most recent valid stateA database will NOT EVER "go back to an old state" until and unless someone has restored an old backup. If the servers were shutdown for two weeks, who would have restored the database. If the servers were shutdown, how would Oracle have automatically gone back to an old stats ? There must have been some manual actions.
    Hemant K Chitale

  • Simple BIP Report help needed

    Hi All ,
    I am bit new to BI Publisher,I have done plenty of Oracle reports 6i and 10g.
    Have read the BIPublisher Guide as well,but could not understand a few points.
    suppose I want to build a very very simple report like
    Sysdate Sysdate Sysdate
    16-Oct-08 16-Oct-08 16-Oct-08
    step 1) I will write the following query in the Data Model and store/save it.
    select sysdate ,sysdate,sysdate from dual.
    Step 2) In the layout model I want to use .rtf layout .So in the MS word .rdf document I create /insert
    a table with 2 rows and 3 columns,where 1st row will have Sysdate in all 3 columns as header.
    Now to fetch date 3times(the data) from the above query,WHAT is going to be my next steps ????
    I am not able to understand the link between the layout(.rtf document) and XML document.
    Please can someone reply to this question and let me know ?
    Regards
    Sunny

    I added a useless parameter just so you could see where parms should go...
    Datatemplate:
    <dataTemplate name="A_SIMPLE_REPORT">
         <properties>
              <property name="xml_tag_case" value="upper"/>
         </properties>
         <parameters>
              <parameter name="P_PARM" dataType="character"/>
         </parameters>
         <dataQuery>
              <sqlStatement name="QUERYNAME">
                   <![CDATA[
    select sysdate SYSDATE1
    , sysdate SYSDATE2
    , sysdate SYSDATE3
    from dual
    where 'XYZ' = nvl(:P_PARM, 'XYZ')
    ]]>
              </sqlStatement>
         </dataQuery>
         <dataStructure>
              <group name="G_UPPERGROUP" dataType="varchar2" source="QUERYNAME">
                   <element name="SYSDATE1" dataType="varchar2" value="SYSDATE1"/>
                   <element name="SYSDATE2" dataType="varchar2" value="SYSDATE2"/>
    <element name="SYSDATE3" dataType="varchar2" value="SYSDATE3"/>
              </group>
         </dataStructure>
         <dataTrigger name="afterReportTrigger" source="A_SIMPLE_REPORT.afterreport()"/>
    </dataTemplate>
    XML OUPUT:
    <?xml version="1.0" encoding="UTF-8" ?>
    <A_SIMPLE_REPORT>
    <LIST_G_UPPERGROUP>
    <G_UPPERGROUP>
    <SYSDATE1>2008-10-16T18:20:19.000-05:00</SYSDATE1>
    <SYSDATE2>2008-10-16T18:20:19.000-05:00</SYSDATE2>
    <SYSDATE3>2008-10-16T18:20:19.000-05:00</SYSDATE3>
    </G_UPPERGROUP>
    </LIST_G_UPPERGROUP>
    </A_SIMPLE_REPORT>
    Hope this helps,
    Scott
    PS If you have been doing reports for as long as you say you prob. know this already...but I NEVER* trust Oracle to convert my dates. I convert them all to char, pass them and convert them on "the other side" (if needed). But, you can change the data type to date if you feel brave, but don't say I didn't warn you. ;-)

  • EMU 1212m installation problems! Help needed!

    Hello everyone. Hopefully someone can help me out, getting my 1212m back to working.
    A month ago, I bought a new computer and I put a EMU 1212m into it. It worked fine, until some other audio devices had bad drivers and made windows crash so many times, I decided to format my hard disk and install XP over again. Well, that worked out fine, computer is running very smoothly but I cant install my 1212m anymore. Windows does find new hardware, which it names "multimedia-audiocontroller, pci slot xx, etc" in the device manager. When I start the EMU setup from the original CD, it says "setup has not detected any supported hardware on your computer" and it closes down right away.
    I already tried this:
    - multiple installation CD's
    - multiple EMU drivers (internet, etc)
    - chancing PCI slots
    - disabling on-board sound via Bios
    - cleaning up registery settings from earlier installation attemps.
    - manually select the drivers on the installation CD. It installes the drivers and then Windows says: this device will not start.
    I can try whatever I want, but the message keeps on showing up everytime I start a setup. I don't know which actions to take next, so I desperately need some advice here.
    any help will be much appreciated!
    thanks,
    Hugo

    I just bought a 1212M and have had similar problems. I assumed the website drivers would be newer than those on the accompanying CD as is the case with most products -- WRONG! I got the same symptoms you describe with the internet drivers, only when I used the CD did it work -- and to my amazement, the CD drivers seems to be newer than the internet downloads (excluding the 2.0 beta drivers of course).
    Another complication I had was that I left my perfectly working X-Fi in the computer while installing the 1212M .... the drivers seem to confuse the two cards, which doesn't help. In fairness, the Emu documentation does warn about this, however I eventually got both to work together. If you have a second soundcard in the same computer, even one built into the motherboard, disable it and see if that helps. The Creative (SoundBlaster) drivers are notoriously hard to uninstall cleanly, so if necessary follow Martin Walker's excellent advice over at Sound On Sound (http://www.soundonsound.com/sos/mar0...pcmusician.htm).

  • Simple HTML page HELP needed

    Hi all,
    Here's my dilemma:
    I've got this simple html page that I've made with
    dreamweaver CS3. On the starting page I want to put a section
    called "NEWS", under which there would be essentially a texfield
    with the news. Now, I don't want to put the news text in the html
    code. Rather, I'd like the code to somehow take this text from a
    separate text file which I could edit at will and simply overwrite
    on the host server so that changes are seen in browsers.
    I don't need a real CMS (besides, CMS is way over my head).
    Just this one text field. I've tried with the textfield/text
    area/HTML object/etc. in the 'insert' tool but none worked. Can
    this be done at all? Appreciate any help.

    macioo1 wrote:
    > Now, I don't want to put the news text in
    > the html code. Rather, I'd like the code to somehow take
    this text from a
    > separate text file which I could edit at will and simply
    overwrite on the host
    > server so that changes are seen in browsers.
    You can do this with a server-side include. The first thing
    you need to
    do is to find out whether your hosting company has enabled
    server-side
    includes, or if you have access to a server-side language
    such as ASP or
    PHP. The way that you create a server-side include is
    slightly different
    in each type of setup.
    When you have found what your remote server supports, someone
    can give
    you further instructions.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Simple math operation - Help needed

    Hi, i have a simple mathematical operation to do, related to
    a shooping cart, which i want to keep simple.
    I have a input text box named QT1, where customers indicate
    quantity
    I have a dymanic text box, named ST1, where i want the value
    of QT1 to be multiplied by 10$ (hence 10)
    on the release of the button. I have a NaN answer. Here is
    the code.
    on (release) {
    var qt1:Number;
    st1 = qt1 * 10;
    And then, a grand total button will add ST1 + ST2 + ST3, with
    GT the name of the grand total dymamic box:
    on (release) {
    gt = st1 + st2 + st3;
    The second part works, but the first one, with QT1 is giving
    me a Nan (not a number) answer.
    Any help appreciated.

    Problem solved. That cary Auto-kern thing....

  • Simple java applet help needed

    hi, im having trouble with an applet im developing for a project.
    i have developed an applet with asks the user for simple information( name,address and phone) through textfields, i wish for the applet to store this information in an array when an add button below the textfeilds is pressed.
    client array[];
    array=new client[];//needs to be an infinate array!
    I have created the client class with all the set and get methods plus constructors needed but i dont know how to take the text typed into the textfields by the user and store them in the array.
    i also need to save this info to a file and be able to load it back into the applet.
    Could some please help! Thank you for your time.

    Better maybe redefine the idea using an data structure :
    public class client{
    private char name[];
    private char address[];
    private int phone;
    public class vector_clients{
    private client vect[];
    // methods for vect[]
    What is your opinion about ???

  • K9N Neo-F Freeze and restart problem. Help needed!

    Hi there,
    I recently bought a Mainboard (K9N Neo-F S/N: 601-7260-010K0605023133) that seems to shutdown every now and then. No blue screen... it just freezes for a while and then shuts down. My CPU temperature is very low, I've used a lot of coolingpaste and I have tried every possible way of mounting memorys... 1,2,4... and in different slots. I've run Memtest also. The BIOS-version is the newest according to the Liveupdate-function. The power supply should be enough but I have tested disconnecting everything else then one harddrive and the mobo... doesn't work.
    Sometimes it happens with three hours between the occations and sometimes five minutes. Not related to anything special that is done on the computer.
    Is this a problem that is common...? Related to hardware or bios...? I would be glad for any advice you could give.
    Thanks in advance. Really need help... this drives me mad...
    /Christian

    I started Orthos and then left the computer alone. Went and watched a film, when I got back after 1 hour and 38 minutes or something like that the computer freezed. I will try leaving it on all night without touching a thing... kind of strange that it happens right when I sit down and move the mouse.
    Thanks a lot for trying to help... it's appreciated.
    Here's the log:
    Type: Large, in-place FFTs - stress some RAM Min: 128 Max: 1024 InPlace: Yes Mem: 8 Time: 15
    CPU: 2211MHz FSB: 200MHz [201MHz x 11.0 est.]
    CPU: 2211MHz FSB: 0MHz [0MHz x 0.0 est.]
    2006-10-16 21:23
    Launching 2 threads...
    1:Using CPU #0
    2:Using CPU #1
    1:Beginning a continuous self-test to check your computer.
    2:Beginning a continuous self-test to check your computer.
    1:Press Stop to end this test.
    2:Press Stop to end this test.
    1:Test 1, 4000 Lucas-Lehmer iterations of M19922945 using 1024K FFT length.
    2:Test 1, 4000 Lucas-Lehmer iterations of M19922945 using 1024K FFT length.
    1:Test 2, 4000 Lucas-Lehmer iterations of M19922943 using 1024K FFT length.
    2:Test 2, 4000 Lucas-Lehmer iterations of M19922943 using 1024K FFT length.
    1:Test 3, 4000 Lucas-Lehmer iterations of M19374367 using 1024K FFT length.
    2:Test 3, 4000 Lucas-Lehmer iterations of M19374367 using 1024K FFT length.
    1:Test 4, 4000 Lucas-Lehmer iterations of M19174369 using 1024K FFT length.
    2:Test 4, 4000 Lucas-Lehmer iterations of M19174369 using 1024K FFT length.
    1:Test 5, 4000 Lucas-Lehmer iterations of M18874369 using 1024K FFT length.
    2:Test 5, 4000 Lucas-Lehmer iterations of M18874369 using 1024K FFT length.
    1:Self-test 1024K passed!
    1:Test 1, 4500 Lucas-Lehmer iterations of M17432577 using 896K FFT length.
    2:Self-test 1024K passed!
    2:Test 1, 4500 Lucas-Lehmer iterations of M17432577 using 896K FFT length.
    1:Test 2, 4500 Lucas-Lehmer iterations of M17432575 using 896K FFT length.
    2:Test 2, 4500 Lucas-Lehmer iterations of M17432575 using 896K FFT length.
    1:Test 3, 4500 Lucas-Lehmer iterations of M17115073 using 896K FFT length.
    2:Test 3, 4500 Lucas-Lehmer iterations of M17115073 using 896K FFT length.
    1:Test 4, 4500 Lucas-Lehmer iterations of M16815071 using 896K FFT length.
    2:Test 4, 4500 Lucas-Lehmer iterations of M16815071 using 896K FFT length.
    1:Self-test 896K passed!
    1:Test 1, 5300 Lucas-Lehmer iterations of M14942209 using 768K FFT length.
    2:Self-test 896K passed!
    2:Test 1, 5300 Lucas-Lehmer iterations of M14942209 using 768K FFT length.
    1:Test 2, 5300 Lucas-Lehmer iterations of M14942207 using 768K FFT length.
    2:Test 2, 5300 Lucas-Lehmer iterations of M14942207 using 768K FFT length.
    1:Test 3, 5300 Lucas-Lehmer iterations of M14155777 using 768K FFT length.
    2:Test 3, 5300 Lucas-Lehmer iterations of M14155777 using 768K FFT length.
    1:Test 4, 5300 Lucas-Lehmer iterations of M14155775 using 768K FFT length.
    2:Test 4, 5300 Lucas-Lehmer iterations of M14155775 using 768K FFT length.
    1:Self-test 768K passed!
    1:Test 1, 6500 Lucas-Lehmer iterations of M12451841 using 640K FFT length.
    2:Self-test 768K passed!
    2:Test 1, 6500 Lucas-Lehmer iterations of M12451841 using 640K FFT length.
    1:Test 2, 6500 Lucas-Lehmer iterations of M12451839 using 640K FFT length.
    2:Test 2, 6500 Lucas-Lehmer iterations of M12451839 using 640K FFT length.
    1:Test 3, 6500 Lucas-Lehmer iterations of M12196481 using 640K FFT length.
    2:Test 3, 6500 Lucas-Lehmer iterations of M12196481 using 640K FFT length.
    2:Test 4, 6500 Lucas-Lehmer iterations of M11796481 using 640K FFT length.
    1:Test 4, 6500 Lucas-Lehmer iterations of M11796481 using 640K FFT length.
    1:Test 5, 6500 Lucas-Lehmer iterations of M11796479 using 640K FFT length.
    2:Test 5, 6500 Lucas-Lehmer iterations of M11796479 using 640K FFT length.
    1:Self-test 640K passed!
    1:Test 1, 7800 Lucas-Lehmer iterations of M9961473 using 512K FFT length.
    2:Self-test 640K passed!
    2:Test 1, 7800 Lucas-Lehmer iterations of M9961473 using 512K FFT length.
    1:Test 2, 7800 Lucas-Lehmer iterations of M9961471 using 512K FFT length.
    2:Test 2, 7800 Lucas-Lehmer iterations of M9961471 using 512K FFT length.
    1:Test 3, 7800 Lucas-Lehmer iterations of M9837183 using 512K FFT length.
    2:Test 3, 7800 Lucas-Lehmer iterations of M9837183 using 512K FFT length.
    1:Test 4, 7800 Lucas-Lehmer iterations of M9737185 using 512K FFT length.
    2:Test 4, 7800 Lucas-Lehmer iterations of M9737185 using 512K FFT length.
    1:Test 5, 7800 Lucas-Lehmer iterations of M9537183 using 512K FFT length.
    2:Test 5, 7800 Lucas-Lehmer iterations of M9537183 using 512K FFT length.
    1:Self-test 512K passed!
    1:Test 1, 9000 Lucas-Lehmer iterations of M8716289 using 448K FFT length.
    2:Self-test 512K passed!
    2:Test 1, 9000 Lucas-Lehmer iterations of M8716289 using 448K FFT length.
    1:Test 2, 9000 Lucas-Lehmer iterations of M8716287 using 448K FFT length.
    2:Test 2, 9000 Lucas-Lehmer iterations of M8716287 using 448K FFT length.
    1:Test 3, 9000 Lucas-Lehmer iterations of M8516289 using 448K FFT length.
    2:Test 3, 9000 Lucas-Lehmer iterations of M8516289 using 448K FFT length.
    1:Test 4, 9000 Lucas-Lehmer iterations of M8316287 using 448K FFT length.
    2:Test 4, 9000 Lucas-Lehmer iterations of M8316287 using 448K FFT length.

  • Income Tax Calculation problem: Urgent Help Needed

    Dear Gurus,
    I am facing a unique problem. Our client has two incentives –
    1) Product Incentive
    2) Sales Incentive
    Every month incentive figures get changed. These two are Monthly Regular Income (Cumulations Class 24) i.e. included in annual tax calculation.
    Now for tax calculation, my client wants "Actual Earning" and "Estimated Earning for the rest of the year" to be different. But Income tax calculation in SAP (for the month of April 2007) takes Actual Earning and multiplied it by 12( i.e. 11+1) to calculate Estimated Earning. But my client wants this Estimated Earning to be different. 
    Now please let me know is this possible in SAP system and how to calculate this?
    Your help will be highly appreciated
    Waiting for an early reply.
    Thanking You,
    With Best Regards,
    Pratik

    Hi,
    I am not understand your problem give your mb then i talk to you
    mhpo

  • Lightroom 2.3 problem. Help needed.

    Hi,
    I'm using Lightroom 2.3 on a PC with Windows XP installed and 3GB of ram.
    I seem to have run into a problem that I'm hoping someone may be able to help me solve.
    Yesterday evening I went to import some images (Raw files) into Lightroom from my external hard drive. I selected the folder and chose the option to import all images within the folder. A message popped up saying they were already in my catalogue so I closed the dialogue box. I looked for them but they weren't in Lightroom so I tried the import again. This time Lightroom just froze up when I selected the images to import. I had to Ctrl-Alt-Delete to end the program.
    I relaunched and optimized the catalogue and tried again but Lightroom froze again. I deleted my Lightroom catalogue, the Silvertone folder, uninstalled Lightroom and reinstalled it to start again from scratch with a brand new catalogue.
    I tried importing some different photos from a different folder on my external hard drive, the same thing happened again, Lightroom completely froze.
    I used Ctrl-Alt-Delete to end the program and relaunched Lightroom. I selected some images from a Compact Flash card that I had in my card reader, Lightroom imported these into the catalogue ok. I tried again with some images from my external hard drive but this time before freezing-up I had a dialogue box appear for a second saying 'Computing dates', but still no imported images and locked-up once again.
    Help!!!!
    Has anyone any ideas why this is happening and more importantly, how to solve it.
    Any help would be much appreciated, thank you.

    John,
    The images are actually stored on that particular drive and I'm just importing them but leaving them in place.
    After successfully importing one lot of images and Lightroom freezing-up again, I deleted the preferences folder once again and launched Lightroom. This time it let me import two folders worth of images in succesion. I then tried to import a third and it did nothing and froze. I once again deleted the preferences file and it allowed me to import.
    So it seems I can import one lot of images or even two lots before the problem re-occurs and I have to keep deleting the preferences file before being able to continue.

Maybe you are looking for

  • Can print to shared Canon iP4300 via Bonjour - but not with Canon driver

    I've searched the forums and therefore know roughly what the problem is, but still need some concrete info please... Have finally managed to share my Canon iP4300 connected to iMac (10.5.2) via USB and print to it from XP, using Bonjour for Windows.

  • How to see "sent messages" mailbox within "received" messages mailbox into Mail app

    I'm a brand new user of Ipad and when I'm using Mail I would like to be able to see all my mailboxes and my sent messages box and even the bin box within each others. I saw it on the Ipad of a friend, but on mine I've got a column called "all mailbox

  • Xp on imac 20 duo

    I rec'd my new imac 20 duo yesterday and today installed win xp. Everything so far went and working well with 2 minor problems. First when I am in win xp my number keys on the right side on usb keyboard are not working however in mac os they work ok.

  • Audacity Crashes Whenever I Try To Open File?

    I have recommended Audacity to FCE users for the last few years but have not used it recently as I have other apps. I have just downloaded several versions to test on my iMac but each one freezes or crashes whenever I try to open an AIF file. There w

  • Help with connecting to ap with wpa-psk1 with tkip

    hi guys, i dont know how to proceed with this. i was able to get ndiswrapper working -thanks to this forum and followed these instructions for wpa supplicant http://wiki.archlinux.org/index.php/Ndi - supplicant i dont know now what to do next. i cant